mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 00:18:27 +00:00
46 lines
785 B
SCSS
46 lines
785 B
SCSS
.os-updates {
|
|
font-size: $x-small;
|
|
|
|
&__description {
|
|
margin: $pad-xxlarge 0;
|
|
}
|
|
|
|
&__content {
|
|
display: grid;
|
|
gap: $pad-xxlarge;
|
|
margin: 0 auto;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-areas:
|
|
"current-version current-version"
|
|
"target nudge-preview";
|
|
|
|
@media (max-width: $break-md) {
|
|
grid-template-columns: 1fr;
|
|
grid-template-areas:
|
|
"current-version"
|
|
"target"
|
|
"nudge-preview";
|
|
}
|
|
}
|
|
|
|
&__current-version-container {
|
|
grid-area: current-version;
|
|
}
|
|
|
|
&__target-container {
|
|
grid-area: target;
|
|
}
|
|
|
|
&__nudge-preview-container {
|
|
grid-area: nudge-preview;
|
|
}
|
|
|
|
&__os-versions-card {
|
|
margin-bottom: $pad-xxlarge;
|
|
}
|
|
|
|
&__premium-feature-message {
|
|
margin-top: 80px;
|
|
}
|
|
}
|