mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
29 lines
592 B
SCSS
29 lines
592 B
SCSS
.disk-encryption {
|
|
@include vertical-card-layout;
|
|
|
|
.premium-feature-message-container {
|
|
justify-content: initial;
|
|
align-items: initial;
|
|
}
|
|
|
|
> p {
|
|
margin: 0;
|
|
}
|
|
|
|
.disk-encryption-content {
|
|
animation: fade-in 250ms ease-out;
|
|
}
|
|
.section-header__sub-title a {
|
|
font-size: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
.data-table {
|
|
&__wrapper {
|
|
// Keeps table data within the table container at smaller screen sizes
|
|
overflow-x: auto;
|
|
// Prevent border from causing .side-nav__card-container horizontal scroll
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
}
|