Refactor(css): Change all less to module mode

This commit is contained in:
2024-10-17 20:26:06 +08:00
parent 3d77dc793b
commit b7c3fb8524
111 changed files with 962 additions and 858 deletions

View File

@@ -0,0 +1,30 @@
@import '@/assets/css/constants';
.dotList {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
.item {
flex: auto;
cursor: pointer;
.dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: 2px solid @font-secondary-color;
transition: all .2s;
}
:hover {
background-color: @focus-color;
}
}
.active > * {
background-color: @font-secondary-color !important;
}
}