fleet/frontend/pages/ManageControlsPage/OSUpdates/components/CurrentVersionSection/_styles.scss
Gabriel Hernandez 746a254362
fix ui bug for showing os updates table with no team (#17862)
quick fix to correctly show the os versions for "no teams" on os updates
page

**before:**

<img width="1688" alt="image"
src="https://github.com/fleetdm/fleet/assets/1153709/6867e62f-48a0-4020-9760-86c6f62af207">

**after:**

<img width="1687" alt="image"
src="https://github.com/fleetdm/fleet/assets/1153709/6d5245e4-bb46-466a-ba9f-7752ea1b0997">

- [x] Manual QA for all new/changed functionality
2024-03-26 16:38:53 +00:00

22 lines
367 B
SCSS

.os-updates-current-version-section {
&__title {
display: flex;
align-items: center;
gap: $pad-small;
padding-bottom: $pad-medium;
border-bottom: 1px solid $ui-fleet-black-10;
margin-bottom: $pad-xxlarge;
}
&__header {
h2 {
font-weight: normal;
font-size: 18px;
}
}
&__error {
padding: $pad-xxlarge;
}
}