mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
30 lines
483 B
SCSS
30 lines
483 B
SCSS
.empty-pack {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 80px;
|
|
|
|
&__inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
h1 {
|
|
font-size: $small;
|
|
font-weight: $bold;
|
|
margin-bottom: $pad-medium;
|
|
}
|
|
|
|
p {
|
|
color: $core-fleet-black;
|
|
font-weight: $regular;
|
|
font-size: $x-small;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&__empty-filter-results {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 350px;
|
|
}
|
|
}
|