refactor: update component styles to use theme-aware colors and improve UI consistency

This commit is contained in:
asepharyana
2026-08-26 15:43:43 +07:00
parent a5f908dc06
commit 153e628aba
25 changed files with 141 additions and 58 deletions
@@ -169,7 +169,7 @@ export function Chatbot() {
<button
type="button"
onClick={() => setExpanded(!expanded)}
className="rounded-[5px] p-1 text-ink-muted hover:bg-surface-2 hover:text-ink"
className="rounded-md p-1 text-ink-muted hover:bg-surface-2 hover:text-ink"
>
{expanded ? (
<Minimize2 className="size-3.5" />
@@ -180,7 +180,7 @@ export function Chatbot() {
<button
type="button"
onClick={() => setOpen(false)}
className="rounded-[5px] p-1 text-ink-muted hover:bg-surface-2 hover:text-ink"
className="rounded-md p-1 text-ink-muted hover:bg-surface-2 hover:text-ink"
>
<X className="size-3.5" />
</button>