diff --git a/components/Navbar/Navbar.module.css b/components/Navbar/Navbar.module.css index 9cdd5d30e..2d1ee4b07 100644 --- a/components/Navbar/Navbar.module.css +++ b/components/Navbar/Navbar.module.css @@ -1,7 +1,3 @@ -.root { - @apply; -} - .container { @apply flex justify-between items-center flex-row px-6 h-20 relative border-gray-100 border-b; } diff --git a/components/Searchbar/Searchbar.module.css b/components/Searchbar/Searchbar.module.css index bce0bd3c4..844b371e3 100644 --- a/components/Searchbar/Searchbar.module.css +++ b/components/Searchbar/Searchbar.module.css @@ -8,7 +8,7 @@ } .input { - @apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg; + @apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg text-accent-4; min-width: 300px; } diff --git a/components/Searchbar/Searchbar.tsx b/components/Searchbar/Searchbar.tsx index 4245d5b89..5b43ef09a 100644 --- a/components/Searchbar/Searchbar.tsx +++ b/components/Searchbar/Searchbar.tsx @@ -17,8 +17,8 @@ const Searchbar: FunctionComponent = ({ className }) => {
diff --git a/pages/index.tsx b/pages/index.tsx index e2c7b769c..6629b829b 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -10,7 +10,7 @@ export default function Home() { /> -
+
diff --git a/tailwind.config.js b/tailwind.config.js index 24a14608b..514671aa7 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -11,9 +11,16 @@ module.exports = { extend: { colors: { "accent-1": "#333", + "accent-4": "#888", + violet: "#7928CA", + pink: "#FF0080", + cyan: "#50E3C2", }, }, }, variants: {}, plugins: [require("@tailwindcss/ui")], + experimental: { + applyComplexClasses: true, + }, }; diff --git a/ui/Logo/Logo.tsx b/ui/Logo/Logo.tsx index 31e2856bd..96880c05b 100644 --- a/ui/Logo/Logo.tsx +++ b/ui/Logo/Logo.tsx @@ -14,25 +14,25 @@ const Logo = () => ( d="M1.00032 7.45572H0.847148L0.847146 7.60888L0.84683 26.3794L0.846827 26.5326H1H3.35085H3.50402V26.3794V11.0488L15.5865 26.4613L15.6325 26.52H15.7071H18.593H18.9075L18.7136 26.2724L4.02996 7.51447L3.98397 7.45572H3.90935H1.00032Z" fill="black" stroke="black" - stroke-width="0.30634" + strokeWidth="0.30634" /> );