2023-01-03 12:56:18 -08:00
|
|
|
@use "sass:map";
|
|
|
|
|
2023-01-03 03:35:05 -08:00
|
|
|
.entry {
|
|
|
|
$this: &;
|
2023-01-03 12:56:18 -08:00
|
|
|
margin: map.get($spacers, 4) 0;
|
2023-01-03 03:35:05 -08:00
|
|
|
|
|
|
|
&__value {
|
|
|
|
display: block;
|
|
|
|
font-size: 4rem;
|
|
|
|
line-height: 1;
|
|
|
|
margin-bottom: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
|
|
|
color: var(--primary);
|
|
|
|
display: block;
|
|
|
|
font-size: .8rem;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 0px;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2023-01-03 12:56:18 -08:00
|
|
|
}
|