mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 15:09:20 +00:00
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
22 lines
367 B
SCSS
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;
|
|
}
|
|
}
|