Add border around LanguageSelect elements
Some checks are pending
The Quran / ci (push) Waiting to run

This commit is contained in:
0x1eef 2024-09-21 13:56:04 -03:00
parent deb61e94bd
commit f5ba2b9388
2 changed files with 5 additions and 1 deletions

View file

@ -75,6 +75,10 @@ html {
.background-accent {
background: var(--accent-color);
}
.border-accent {
border: 1px solid var(--accent-color);
}
}
}

View file

@ -16,7 +16,7 @@ export function LanguageSelect({ locale }: Props) {
<Select.Option
key={i}
className={classNames(
"flex h-6 w-full justify-center no-underline mb-1 rounded",
"flex h-6 w-full justify-center no-underline mb-1 rounded border-accent",
l.direction,
l.name === locale.name ? "active" : undefined,
)}