From a49f5a3f968dcc8c84759a382a0762abf0bc758b Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Thu, 23 Mar 2023 17:01:03 +0700 Subject: cart, checkout, quotation --- src/styles/globals.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'src/styles') diff --git a/src/styles/globals.css b/src/styles/globals.css index 6e4d46e4..90761309 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -394,6 +394,10 @@ button { @apply !border-yellow_r-9; } +nav:has(> div.overlay) { + @apply z-0; +} + .table-specification { @apply max-h-[500px] overflow-y-auto border border-gray_r-6; } @@ -425,6 +429,40 @@ button { @apply odd:bg-gray_r-3 even:bg-gray_r-1; } +.table-cart, +.table-checkout { + @apply w-full + table-auto + border-collapse; +} + +.table-cart tr, +.table-checkout tr { + @apply border-y + border-gray_r-6 + first:border-t-0; +} + +.table-cart th, +.table-cart td, +.table-checkout th, +.table-checkout td { + @apply py-4 + px-3 + text-center + text-gray_r-12/90; +} + +.table-cart th, +.table-cart td { + @apply first:w-12; +} + +.table-cart th, +.table-checkout th { + @apply font-medium; +} + .navbar-user-dropdown-button { @apply flex-1 flex -- cgit v1.2.3