teemant-react/src/components/ViewTabs/ViewTabs.module.scss

23 lines
378 B
SCSS

.tabs {
background-color: #ddd;
.tab {
appearance: none;
border: 0;
padding: 0.75rem 1.25rem;
background-color: rgb(207, 207, 207);
font-size: 1rem;
cursor: pointer;
&:hover,
&:focus-visible {
background-color: rgb(224, 224, 224);
}
&.active {
background-color: rgb(236, 236, 236);
font-weight: bold;
}
}
}