webapp/src/components/_shared/Stat.module.scss

37 lines
499 B
SCSS
Raw Normal View History

.statMetrics {
@include font-size(1.7rem);
color: #9fa1a7;
display: flex;
2023-05-17 20:27:24 +00:00
margin: 0 0 1em;
@include media-breakpoint-down(md) {
flex-wrap: wrap;
}
2023-05-17 20:27:24 +00:00
@include media-breakpoint-down(sm) {
margin-top: 0.5em;
}
}
.statMetricsItem {
@include font-size(1.5rem);
margin-right: 1.6rem;
white-space: nowrap;
&:last-child {
margin-right: 0;
}
&.compact {
font-size: small;
}
&.followers {
word-break: keep-all;
}
&.button {
float: right;
}
}