Files
list.fur/src/components/CategoryNavItem.css
T
2024-12-01 23:23:31 +05:30

21 lines
417 B
CSS

.nav__item {
display: inline-block;
text-decoration: none;
border: none;
outline: none;
background: none;
cursor: pointer;
border-bottom: 1px solid transparent;
font-family: var(--body-copy);
font-weight: 400;
color: var(--text-secondary);
}
.nav__item:hover {
color: var(--text-primary);
}
.nav__item.is-active {
color: var(--text-primary);
border-bottom: 1px solid var(--support-info);
}