mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
17 lines
362 B
SCSS
17 lines
362 B
SCSS
.auth-form-wrapper {
|
|
@include display(flex);
|
|
@include flex-direction(column);
|
|
@include justify-content(center);
|
|
@include flex-grow(1);
|
|
padding: $base 0;
|
|
|
|
&__logo {
|
|
width: 286px;
|
|
height: 69px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
height: calc(100vh - #{$footer-height});
|
|
}
|
|
}
|