mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
This if the 2nd PR as part of the of the Align components in Fleet UI with design system in Figma #539 These changes **refactor the spacing and font sizes** used by the frontend. - Change the scss variables in `padding.scss` and `fonts.scss`. - Replace custom styles with the new variables throughout all stylesheets.
37 lines
638 B
SCSS
37 lines
638 B
SCSS
.logout-form {
|
|
align-self: center;
|
|
width: 460px;
|
|
|
|
&__container {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
background-color: $core-white;
|
|
box-sizing: border-box;
|
|
padding: $pad-xlarge;
|
|
width: 460px;
|
|
min-height: 350px;
|
|
}
|
|
|
|
&__avatar {
|
|
border: 1px solid $core-vibrant-blue;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
&__username {
|
|
color: $core-vibrant-blue;
|
|
font-size: $large;
|
|
margin: $pad-small 0;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
&__subtext {
|
|
color: $core-fleet-blue;
|
|
font-size: $medium;
|
|
margin-top: $pad-small;
|
|
}
|
|
|
|
&__submit-btn {
|
|
width: 460px;
|
|
}
|
|
}
|