chore(app): drop unused .btn--danger CSS

The legacy `.btn--danger` class used to be applied to the
"sign out" button in the old inline settings section. The X-style
settings refactor replaced that with
`.settings__group--danger .settings__action`, which has its
own selector tree. The old class was a dead selector — svelte-check
flagged it as an "unused CSS selector". Drop it.
This commit is contained in:
tomdebone
2026-07-26 21:34:14 +02:00
parent 48ee25f217
commit baeb87214b
+4 -9
View File
@@ -955,15 +955,10 @@
background: rgba(255, 59, 48, 0.08);
}
.btn--danger {
color: var(--red);
border-color: var(--red);
}
.btn--danger:hover:not(:disabled) {
background: rgba(255, 59, 48, 0.08);
color: var(--red);
border-color: var(--red);
}
/* (the legacy .btn--danger class used to be applied to the
"sign out" button — that's now styled via
`.settings__group--danger .settings__action` which is its own
selector tree in the settings section below) */
/* X-style settings page: sectioned cards with label-left /
value-right rows, then a list of clickable action rows, then