fix:修改球的颜色

This commit is contained in:
lz-ui 2025-10-29 09:44:57 +08:00
parent 1a456b2b51
commit 00f2ccce95

View File

@ -490,5 +490,16 @@ onMounted(() => {
.table-column-active-22 {
background-color: #333;
border-color: #333;
position: relative;
}
.table-column-active-22::after {
content: '';
display: block;
width: 20px;
height: 10px;
background-color: #fff;
position: absolute;
top: 50%;
left: -2px;
}
</style>