25 lines
500 B
Stylus
25 lines
500 B
Stylus
$category-name-font-size = 1.6rem;
|
|
|
|
.category-container {
|
|
|
|
keep-container(1.02, 1.02, 30px, 30px);
|
|
|
|
.category-name {
|
|
color: var(--second-text-color);
|
|
font-size: $category-name-font-size;
|
|
|
|
+keep-tablet() {
|
|
font-size: $category-name-font-size * 0.9;
|
|
}
|
|
|
|
+keep-mobile() {
|
|
font-size: $category-name-font-size * 0.8;
|
|
}
|
|
|
|
font-weight: 600;
|
|
padding-bottom: 20px;
|
|
margin-bottom: $component-interspace;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
}
|