Retrospring/app/assets/stylesheets/components/_entry.scss

25 lines
392 B
SCSS
Raw Normal View History

2023-01-03 12:56:18 -08:00
@use "sass:map";
.entry {
$this: &;
2023-01-03 12:56:18 -08:00
margin: map.get($spacers, 4) 0;
&__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
}