This commit is contained in:
Zyronon
2025-11-16 20:53:32 +08:00
parent 9032711601
commit 4f7ecbea29
17 changed files with 137 additions and 97 deletions

View File

@@ -98,19 +98,19 @@ defineEmits(['click'])
}
}
&:hover:not(.disabled) {
opacity: .6;
}
&.primary {
background: var(--btn-primary);
&:hover:not(.disabled) {
opacity: 0.6;
}
}
&.link {
border-radius: 0;
border-bottom: 2px solid transparent;
&:hover {
&:hover:not(.disabled) {
border-bottom: 2px solid var(--color-font-2);
}
}
@@ -119,11 +119,20 @@ defineEmits(['click'])
background: var(--btn-info);
border: 1px solid var(--color-main-text);
color: var(--color-main-text);
&:hover:not(.disabled) {
opacity: 0.6;
}
}
&.orange {
background: #FACC15;
color: black;
&:hover:not(.disabled) {
background: #fbe27e;
color: rgba(0, 0, 0, 0.6);
}
}
&.active {