Ondřej Konečný be865af1fc ♻️ connect values with variables in CSS and remove unused code
Signed-off-by: Ondřej Konečný <ondrej.konecny@gmail.com>
2023-02-23 10:58:27 +01:00

27 lines
369 B
SCSS

.typography-item {
padding: 0 1rem;
margin-right: 1rem;
cursor: pointer;
& > * {
white-space: nowrap;
}
& .typography-name {
color: $color-white;
}
& .typography-font,
& .typography-data {
font-size: $fs16;
color: $color-gray-30;
}
.no-text & {
& .typography-font,
& .typography-data {
display: none;
}
}
}