Anki/sass/card-counts.scss
Matthias Metelka f2d5abb95d Improve categorization of global colors
by renaming almost all of them and sorting them into separate maps.
2022-08-29 15:43:02 +02:00

25 lines
334 B
SCSS

.review-count {
color: var(--state-review);
}
.new-count {
color: var(--state-new);
}
.learn-count {
color: var(--state-learn);
}
.zero-count {
color: var(--fg-faint);
}
.bury-count {
color: var(--fg-disabled);
font-weight: bold;
margin-inline-start: 2px;
&:empty {
display: none;
}
}