diff --git a/components/core/Layout/Layout.module.css b/components/core/Layout/Layout.module.css index 984ca54c8..617794481 100644 --- a/components/core/Layout/Layout.module.css +++ b/components/core/Layout/Layout.module.css @@ -1,3 +1,3 @@ .root { - @apply h-full border-indigo-900; + @apply h-full; } diff --git a/components/core/Navbar/Navbar.tsx b/components/core/Navbar/Navbar.tsx index ecbbd0341..5c5a96dc3 100644 --- a/components/core/Navbar/Navbar.tsx +++ b/components/core/Navbar/Navbar.tsx @@ -13,13 +13,13 @@ const Navbar: FC = ({ className }) => { return ( -
- + diff --git a/components/core/UserNav/UserNav.module.css b/components/core/UserNav/UserNav.module.css index df5b8dbba..e2a2a0873 100644 --- a/components/core/UserNav/UserNav.module.css +++ b/components/core/UserNav/UserNav.module.css @@ -7,4 +7,8 @@ .item { @apply mr-6 cursor-pointer relative; + + &:last-child { + @apply mr-0; + } } diff --git a/components/ui/Logo/Logo.tsx b/components/ui/Logo/Logo.tsx index 16c819a3d..a864185b1 100644 --- a/components/ui/Logo/Logo.tsx +++ b/components/ui/Logo/Logo.tsx @@ -1,38 +1,17 @@ const Logo = () => ( + - - - - ) diff --git a/tailwind.config.js b/tailwind.config.js index 882b19d63..0681596d6 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -16,6 +16,10 @@ module.exports = { pink: '#FF0080', cyan: '#50E3C2', blue: '#0070F3', + primary: '#000', + textColor: { + primary: '#FFF', + }, }, }, },