diff options
Diffstat (limited to 'src/styles/globals.css')
| -rw-r--r-- | src/styles/globals.css | 38 |
1 files changed, 38 insertions, 0 deletions
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 |
