feat: update Button component styles and themes; introduce new slate theme for consistent UI across Dropdown, SearchInput, and Navbar components, and enhance MovieList display type toggle functionality

This commit is contained in:
Norbert Maciaszek
2025-08-25 22:43:12 +02:00
parent 9079a52778
commit 3ed7b14f1b
7 changed files with 73 additions and 107 deletions

View File

@@ -211,8 +211,8 @@ export const MovieList: FC<Props> = ({
/>
{!overrideDisplayType && (
<Button
theme="glass"
size="icon"
theme="slate"
onClick={() =>
setDisplayType(displayType === "grid" ? "list" : "grid")
}