diff --git a/src/app/globals.css b/src/app/globals.css index 6121b2b..051d4bc 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -64,8 +64,12 @@ --color-hippie-blue-800: #2c4a60; --color-hippie-blue-900: #283f52; --color-hippie-blue-950: #1b2936; + + --breakpoint-xs: 420px; } +@custom-variant hover-any (&:hover); + @layer base { body { @apply bg-pink-lady-50 text-text; @@ -102,5 +106,5 @@ } @utility grid-auto-cols-* { - grid-template-columns: repeat(auto-fill, --value(integer)); + grid-template-columns: repeat(--value(integer), 1fr); } diff --git a/src/components/atoms/SearchInput/index.tsx b/src/components/atoms/SearchInput/index.tsx index b47ac49..20903d7 100644 --- a/src/components/atoms/SearchInput/index.tsx +++ b/src/components/atoms/SearchInput/index.tsx @@ -33,8 +33,8 @@ export const SearchInput: FC = ({
setValue(e.target.value)} diff --git a/src/components/organisms/Navbar/index.tsx b/src/components/organisms/Navbar/index.tsx index ad79de0..0d6ef44 100644 --- a/src/components/organisms/Navbar/index.tsx +++ b/src/components/organisms/Navbar/index.tsx @@ -14,7 +14,7 @@ const links = [ export const Navbar = () => { return ( -
+