diff --git a/components/core/Featurebar/Featurebar.tsx b/components/core/Featurebar/Featurebar.tsx index d3772ff49..035d0858c 100644 --- a/components/core/Featurebar/Featurebar.tsx +++ b/components/core/Featurebar/Featurebar.tsx @@ -10,14 +10,14 @@ interface Props { const Featurebar: FC = ({ title, description, className }) => { const rootClassName = cn( - 'hidden py-4 px-6 bg-black text-white md:flex flex-row justify-center items-center;', + 'hidden py-2 px-6 bg-gray-100 text-sm text-gray-600 md:flex flex-row justify-center items-center font-medium', className ) return (
- {title} + {title} - {description} + {description}
) } diff --git a/components/core/Navbar/Navbar.module.css b/components/core/Navbar/Navbar.module.css index 2b1ff03a6..a7e7275b1 100644 --- a/components/core/Navbar/Navbar.module.css +++ b/components/core/Navbar/Navbar.module.css @@ -1,10 +1,3 @@ -.root { -} - -.container { - @apply flex justify-between items-center flex-row px-6 h-20 relative; -} - .link { @apply group text-gray-500 inline-flex items-center text-base leading-6 font-medium hover:text-gray-900 focus:outline-none focus:text-gray-900 transition ease-in-out duration-150 cursor-pointer; } diff --git a/components/core/Navbar/Navbar.tsx b/components/core/Navbar/Navbar.tsx index 1447a9f38..f3ba6763d 100644 --- a/components/core/Navbar/Navbar.tsx +++ b/components/core/Navbar/Navbar.tsx @@ -10,25 +10,40 @@ interface Props { } const Navbar: FC = ({ className }) => { - const rootClassName = cn(s.root, className) + const rootClassName = className return (
-
- - - - - -
-
diff --git a/components/core/Searchbar/Searchbar.module.css b/components/core/Searchbar/Searchbar.module.css index fdb4ef62c..55520b1a7 100644 --- a/components/core/Searchbar/Searchbar.module.css +++ b/components/core/Searchbar/Searchbar.module.css @@ -1,13 +1,5 @@ -.root { - @apply px-4 items-center hidden md:flex; -} - -.container { - @apply relative rounded-lg flex flex-row text-sm items-center bg-accent-1; -} - .input { - @apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg text-accent-1 placeholder-accent-4; + @apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg text-gray-600 placeholder-accent-4; min-width: 300px; } diff --git a/components/core/Searchbar/Searchbar.tsx b/components/core/Searchbar/Searchbar.tsx index ef2d78240..47aeed316 100644 --- a/components/core/Searchbar/Searchbar.tsx +++ b/components/core/Searchbar/Searchbar.tsx @@ -8,22 +8,22 @@ interface Props { } const Searchbar: FC = ({ className }) => { - const rootClassName = cn(s.root, className) return ( -
-
-
- -
- - - -
-
+
+ +
+ + +
)