diff --git a/assets/base.css b/assets/base.css index 7d0df28bf..cd0c5e593 100644 --- a/assets/base.css +++ b/assets/base.css @@ -1,13 +1,13 @@ :root { - --primary: white; + --primary: #ffffff; --primary-2: #f1f3f5; - --secondary: black; + --secondary: #000000; --secondary-2: #111; --selection: var(--cyan); - --text-base: black; - --text-primary: black; + --text-base: #000000; + --text-primary: #000000; --text-secondary: white; --hover: rgba(0, 0, 0, 0.075); @@ -38,9 +38,9 @@ } [data-theme='dark'] { - --primary: black; + --primary: #000000; --primary-2: #111; - --secondary: white; + --secondary: #000000; --secondary-2: #f1f3f5; --hover: rgba(255, 255, 255, 0.075); --hover-1: rgba(255, 255, 255, 0.15); diff --git a/components/auth/SignUpView.tsx b/components/auth/SignUpView.tsx index f79ec5eb9..88763a3ff 100644 --- a/components/auth/SignUpView.tsx +++ b/components/auth/SignUpView.tsx @@ -59,7 +59,7 @@ const SignUpView: FC = () => { }, [handleValidation]) return ( -
+
diff --git a/components/cart/CartSidebarView/CartSidebarView.module.css b/components/cart/CartSidebarView/CartSidebarView.module.css index c3a2af639..9b94021ad 100644 --- a/components/cart/CartSidebarView/CartSidebarView.module.css +++ b/components/cart/CartSidebarView/CartSidebarView.module.css @@ -1,2 +1,15 @@ .root { + @apply h-full flex flex-col; +} + +.root.empty { + @apply bg-secondary text-secondary; +} + +.root.success { + @apply bg-green text-white; +} + +.root.error { + @apply bg-red text-white; } diff --git a/components/cart/CartSidebarView/CartSidebarView.tsx b/components/cart/CartSidebarView/CartSidebarView.tsx index 7440a8d81..fdee9eecb 100644 --- a/components/cart/CartSidebarView/CartSidebarView.tsx +++ b/components/cart/CartSidebarView/CartSidebarView.tsx @@ -7,6 +7,7 @@ import { useUI } from '@components/ui/context' import useCart from '@lib/bigcommerce/cart/use-cart' import usePrice from '@lib/bigcommerce/use-price' import CartItem from '../CartItem' +import s from './CartSidebarView.module.css' const CartSidebarView: FC = () => { const { data, isEmpty } = useCart() @@ -32,10 +33,10 @@ const CartSidebarView: FC = () => { return (
@@ -56,7 +57,7 @@ const CartSidebarView: FC = () => {
{isEmpty ? ( -
+