mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
relates to #9831 Update Controls page to individually show the mdm disabled UI state per tab. Before this was done across the entire control page:  Also, refactors the code to be less specific to mac OS. - [x] Manual QA for all new/changed functionality
15 lines
265 B
SCSS
15 lines
265 B
SCSS
.end-user-authentication {
|
|
&__content {
|
|
max-width: $break-xxl;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: $pad-xxlarge;
|
|
}
|
|
|
|
@media (max-width: $break-md) {
|
|
&__content {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
}
|