mirror of
https://github.com/vercel/commerce.git
synced 2025-07-27 04:01:23 +00:00
28 lines
469 B
SCSS
28 lines
469 B
SCSS
@import '../../../../styles/utilities';
|
|
|
|
.tabItem {
|
|
@apply font-bold;
|
|
margin-right: 2rem;
|
|
padding-top: 1rem;
|
|
padding-bottom: 1rem;
|
|
|
|
&:hover {
|
|
@apply cursor-pointer;
|
|
}
|
|
|
|
&.active {
|
|
border-bottom: 2px solid #2DC86E;
|
|
}
|
|
}
|
|
|
|
.tabItemActive {
|
|
@apply font-bold;
|
|
margin-right: 2rem;
|
|
padding-top: 1rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 2px solid #2DC86E;
|
|
|
|
&:hover {
|
|
@apply cursor-pointer;
|
|
}
|
|
} |