Clean button UI

This commit is contained in:
MartinBraquet
2026-02-16 13:38:33 +01:00
parent e3b743f87b
commit b7d1fd9903
2 changed files with 7 additions and 1 deletions

View File

@@ -29,7 +29,8 @@ export default function ThemeIcon(props: {
<SunIcon className={clsx(className, 'block dark:hidden')}/>
</>
return <button onClick={toggleTheme}>
<Row className="items-center gap-1 border-2 border-gray-500 rounded-full p-1 max-w-fit mx-2 px-3">
<Row
className="items-center gap-1 border-2 border-gray-500 rounded-full p-1 max-w-fit mx-2 px-3 hover:bg-canvas-100">
{icon}
{children}
</Row>

View File

@@ -548,3 +548,8 @@ input {
0 0.01em currentColor,
0 -0.01em currentColor;
}
select {
@apply hover-bold;
@apply cursor-pointer;
}