mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
24 lines
394 B
SCSS
24 lines
394 B
SCSS
.registration-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
.registration-breadcrumbs {
|
|
flex-shrink: 0; // Keeps it at top—no vertical stretching
|
|
}
|
|
|
|
&__logo {
|
|
width: 120px;
|
|
|
|
@include breakpoint(tablet) {
|
|
width: 125px;
|
|
position: static;
|
|
display: block;
|
|
margin: 15px 0 0 15px;
|
|
}
|
|
}
|
|
|
|
&__flash-message {
|
|
top: 180px;
|
|
}
|
|
}
|