File size: 873 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | @import "@automattic/typography/styles/variables";
$font-sf-pro-display: "SF Pro Display", $sans;
$font-sf-pro-text: "SF Pro Text", $sans;
$empty-text-color-derker: var(--color-neutral-80);
$empty-text-color-lighter: var(--color-neutral-40);
.stats__empty-state {
.empty-state-card {
display: flex;
padding: 24px;
min-width: 320px;
margin: 0;
background-color: rgba(255, 255, 255, 0.85);
border-radius: 4px;
&__icon {
flex-shrink: 0;
margin-right: 20px;
align-self: center;
color: $empty-text-color-derker;
}
&__content {
flex-grow: 1;
}
.empty-state-card-heading {
font-family: $font-sf-pro-display;
font-weight: 600;
color: $empty-text-color-derker;
margin-bottom: 8px;
}
.empty-state-card-info {
font-family: $font-sf-pro-text;
font-size: $font-body-small;
color: $empty-text-color-lighter;
}
}
}
|