mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
26 lines
528 B
SCSS
26 lines
528 B
SCSS
.auth-form-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
flex-grow: 1;
|
|
padding: $pad-medium 0;
|
|
gap: 2.5rem;
|
|
align-items: center;
|
|
@include gradient-background;
|
|
|
|
&__card {
|
|
@include vertical-card-layout;
|
|
width: 470px;
|
|
}
|
|
|
|
&__header-container {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-bottom: $pad-medium;
|
|
border-bottom: 1px solid $ui-fleet-black-10;
|
|
}
|
|
|
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
height: 100vh;
|
|
}
|
|
}
|