mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
19 lines
414 B
SCSS
19 lines
414 B
SCSS
.registration-page {
|
|
@include display(flex);
|
|
@include justify-content(center);
|
|
@include flex-direction(column);
|
|
min-height: calc(100vh - #{$footer-height});
|
|
position: relative;
|
|
|
|
&__logo {
|
|
@include position(absolute, 15px null null 15px);
|
|
width: 200px;
|
|
|
|
@include breakpoint(tablet) {
|
|
width: 125px;
|
|
position: static;
|
|
display: block;
|
|
margin: 15px 0 0 15px;
|
|
}
|
|
}
|
|
}
|