UX: Make checkboxes respect forum's accent color (#30231)

This change ensures checkboxes respect the forum's accent color. Visual color change only, as such no tests.
This commit is contained in:
Keegan George 2024-12-12 05:55:22 +09:00 committed by GitHub
parent c9119099a9
commit 601780aadf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -207,3 +207,9 @@ input[type="submit"] {
}
}
}
// Inputs
// --------------------------------------------------
input[type="checkbox"] {
accent-color: var(--tertiary);
}