forked from common/base_ar_react
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
648 B
32 lines
648 B
.shop-tabs {
|
|
display: flex;
|
|
width: calc(100vw - 20px);
|
|
height: 56px;
|
|
background: #edeff3;
|
|
border-radius: 12px;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
.tab {
|
|
display: flex;
|
|
width: calc((100vw - 20px - 8px - 3px) / 2);
|
|
height: 48px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-family: PingFang SC;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #7a7e8d;
|
|
&.active {
|
|
background: #ffffff;
|
|
border-radius: 8px;
|
|
color: #323337;
|
|
}
|
|
img {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
}
|
|
|