mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +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.
35 lines
563 B
SCSS
35 lines
563 B
SCSS
.empty-users {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: $pad-xxxlarge;
|
|
|
|
&__inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
h1 {
|
|
font-size: $small;
|
|
font-weight: $bold;
|
|
margin-bottom: $pad-medium;
|
|
}
|
|
|
|
img {
|
|
width: 176px;
|
|
margin-right: $pad-xlarge;
|
|
}
|
|
|
|
p {
|
|
color: $core-fleet-black;
|
|
font-weight: $regular;
|
|
font-size: $x-small;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&__empty-filter-results {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 350px;
|
|
}
|
|
}
|