mirror of
https://github.com/vercel/commerce.git
synced 2025-07-21 11:51:20 +00:00
22 lines
451 B
SCSS
22 lines
451 B
SCSS
@import '../../../styles/utilities';
|
|
|
|
.tabCommon {
|
|
@apply flex;
|
|
position: relative;
|
|
border-bottom: 2px solid #FBFBFB;
|
|
padding-top: 1.6rem;
|
|
padding-bottom: 1.6rem;
|
|
width: 100%;
|
|
|
|
.slider {
|
|
@apply inline-block;
|
|
height: .2rem;
|
|
border-radius: 3px;
|
|
background-color: var(--primary);
|
|
position: absolute;
|
|
z-index: 1200;
|
|
bottom: 0;
|
|
transition: all .4s linear;
|
|
}
|
|
}
|