no message

This commit is contained in:
A1300399510 2024-12-18 15:53:36 +08:00
parent 2f5fadb573
commit a8b06643bd
2 changed files with 17 additions and 2 deletions

View File

@ -235,16 +235,23 @@
left: 0; left: 0;
top: 0; top: 0;
} }
.content .side .item .item-text {
position: relative;
}
.content .side .item .red-amount { .content .side .item .red-amount {
padding: 0 5px; padding: 0 5px;
background-color: #f95d5d; background-color: #f95d5d;
height: 16px; height: 16px;
line-height: 16px;
font-size: 12px; font-size: 12px;
border-radius: 10px; border-radius: 10px;
position: absolute; position: absolute;
right: 5px; right: 5px;
top: 50%; top: 50%;
transform: translateY(-50%); transform: translateY(-50%);
color: #fff;
text-align: center;
font-weight: 400;
} }
.content .details-box { .content .details-box {
background-color: #fbfbfb; background-color: #fbfbfb;

View File

@ -261,16 +261,24 @@
} }
} }
.item-text {
position: relative;
}
.red-amount { .red-amount {
padding: 0 5px; padding: 0 5px;
background-color: rgba(249, 93, 93, 1); background-color: #f95d5d;
height: 16px; height: 16px;
line-height: 16px;
font-size: 12px; font-size: 12px;
border-radius: 10px; border-radius: 10px;
position: absolute; position: absolute;
right: 5px; right: 5px;
top: 50%; top: 50%;
transform: translateY(-50%) transform: translateY(-50%);
color: #fff;
text-align: center;
font-weight: 400;
} }
} }
} }