20 lines
338 B
Plaintext
20 lines
338 B
Plaintext
/* components/Segmented/index.wxss */
|
|
.item {
|
|
display: inline-block;
|
|
padding: 20rpx;
|
|
border: 1rpx solid #ccc;
|
|
border-right: 0rpx;
|
|
font-size: 32rpx;
|
|
min-width: 140rpx;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.item:nth-last-child(1) {
|
|
border-right: 1rpx solid #ccc;
|
|
}
|
|
|
|
.active {
|
|
background-color: var(--middle-green);
|
|
}
|