123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .cl-badge {
- position: relative;
- vertical-align: middle;
- display: inline-block;
- z-index: 9;
- &__content {
- display: inline-block;
- height: 16rpx;
- min-width: 16rpx;
- line-height: 16rpx;
- position: absolute;
- top: -8rpx;
- right: -8rpx;
- background-color: $cl-color-error;
- color: #fff;
- font-size: 24rpx;
- text-align: center;
- white-space: nowrap;
- border: 4rpx solid rgba(255, 255, 255, 1);
- border-radius: 20rpx;
- padding: 8rpx;
- transform: scale(0.9);
- &.is-dot {
- height: 20rpx;
- min-width: 20rpx;
- padding: 0;
- border-radius: 50%;
- }
- &--primary {
- background-color: $cl-color-primary;
- }
- &--success {
- background-color: $cl-color-success;
- }
- &--warning {
- background-color: $cl-color-warning;
- }
- &--info {
- background-color: $cl-color-info;
- }
- &--error {
- background-color: $cl-color-error;
- }
- }
- }
|