Refactor LinkButton to use the new SendouButton API

This commit is contained in:
Kalle
2025-06-09 21:35:55 +03:00
parent ed40f9fd30
commit 0c90f6b009
32 changed files with 194 additions and 317 deletions

View File

@@ -18,15 +18,18 @@
user-select: none;
}
.button[data-focus-visible] {
.button[data-focus-visible],
.button:focus-visible {
outline: 2px solid var(--theme);
}
.button[data-pressed] {
.button[data-pressed],
.button:active {
transform: translateY(1px);
}
.button[data-disabled] {
.button[data-disabled],
.button:disabled {
cursor: not-allowed;
opacity: 0.5;
transform: initial;