style: add hover states

This commit is contained in:
MAZE
2023-12-29 17:30:13 +03:30
parent 8efb1cee00
commit 2c74dd0d60
7 changed files with 34 additions and 1 deletions

View File

@@ -10,7 +10,7 @@
color: var(--color-foreground);
cursor: pointer;
background-color: var(--color-neutral-100);
border: 1px solid var(--color-neutral-200);
border: 1px solid var(--color-neutral-300);
border-radius: 100px;
outline: none;
transition: 0.2s;
@@ -19,6 +19,10 @@
&.disabled {
cursor: not-allowed;
}
&:hover {
background-color: var(--color-neutral-200);
}
}
.tooltip {