improve settings ui (again)

This commit is contained in:
Vendicated 2024-07-02 00:17:40 +02:00 committed by Nuckyz
parent 77492061f5
commit 99b41dba19
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9
11 changed files with 308 additions and 186 deletions

View file

@ -24,7 +24,7 @@ import { DevsById } from "./constants";
* Calls .join(" ") on the arguments
* classes("one", "two") => "one two"
*/
export function classes(...classes: Array<string | null | undefined>) {
export function classes(...classes: Array<string | null | undefined | false>) {
return classes.filter(Boolean).join(" ");
}