mirror of
https://github.com/vercel/commerce.git
synced 2025-07-24 02:31:24 +00:00
29 lines
697 B
SCSS
29 lines
697 B
SCSS
|
|
@import '../../../styles/utilities';
|
|
.tabWapper{
|
|
@apply flex flex-col w-full;
|
|
.tabHeader{
|
|
@apply flex;
|
|
.tabList {
|
|
@apply flex;
|
|
position: relative;
|
|
border-bottom: 2px solid #FBFBFB;
|
|
padding: 0.8rem 0;
|
|
&.center{
|
|
margin: auto;
|
|
}
|
|
|
|
.slider {
|
|
@apply inline-block;
|
|
height: .2rem;
|
|
border-radius: 3px;
|
|
background-color: var(--primary);
|
|
position: absolute;
|
|
z-index: 1200;
|
|
bottom: 0;
|
|
transition: all .25s linear;
|
|
}
|
|
}
|
|
}
|
|
}
|