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.
41 lines
769 B
41 lines
769 B
|
|
.segmented-control {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
font-size: 26rpx;
|
|
border-radius: 5rpx;
|
|
box-sizing: border-box;
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
}
|
|
.segmented-control.button {
|
|
border-radius: 54rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.segmented-control.text {
|
|
border: 0;
|
|
border-radius: 0rpx;
|
|
}
|
|
.segmented-control-item {
|
|
flex: 1;
|
|
text-align: center;
|
|
line-height: 54rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.segmented-control-item.button {
|
|
border-left: 1rpx solid;
|
|
}
|
|
.segmented-control-item.button:first-child {
|
|
border-radius: 54rpx 0 0 54rpx;
|
|
}
|
|
.segmented-control-item.button:last-child {
|
|
border-radius: 0 54rpx 54rpx 0;
|
|
}
|
|
.segmented-control-item.text {
|
|
border-left: 0;
|
|
}
|
|
.segmented-control-item:first-child {
|
|
border-left-width: 0;
|
|
}
|
|
|
|
|