mirror of
https://github.com/fleetdm/fleet
synced 2026-04-27 16:37:55 +00:00
17 lines
278 B
SCSS
17 lines
278 B
SCSS
|
|
.end-user-authentication {
|
||
|
|
|
||
|
|
&__content {
|
||
|
|
max-width: $break-1600;
|
||
|
|
margin: 0 auto;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
gap: $pad-xxlarge;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: $break-990) {
|
||
|
|
&__content {
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|