26 lines
458 B
SCSS
26 lines
458 B
SCSS
/* components/dataSource/dataSource.wxss */
|
|
.operation {
|
|
font-size: 24rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
color: #2F88DB;
|
|
text-align: right;
|
|
margin-left: 68rpx;
|
|
position: relative;
|
|
.operationIcon {
|
|
margin-right: 9rpx;
|
|
width: 20rpx;
|
|
height: 22rpx;
|
|
}
|
|
.redDot {
|
|
width: 10rpx;
|
|
height: 10rpx;
|
|
display: inline-block;
|
|
border-radius: 50%;
|
|
background: red;
|
|
position: absolute;
|
|
top: 0px;
|
|
}
|
|
}
|
|
|