yunshangxie/tuniao-ui/libs/css/style.h5.scss

35 lines
627 B
SCSS
Raw Permalink Normal View History

2023-12-25 17:56:30 +08:00
/* H5的时候隐藏滚动条 */
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
}
/* 双标签 start*/
.capsule {
display: inline-flex;
vertical-align: middle;
width: 20%;
min-width: 136rpx;
height: 45rpx;
.capsule-tag {
margin: 0;
&:first-child {
border-top-right-radius: 0rpx;
border-bottom-right-radius: 0rpx;
}
&:last-child {
&::after {
border-top-left-radius: 0rpx;
border-bottom-left-radius: 0rpx;
}
}
}
}
/* 双标签 end*/