summaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-03-23 17:01:03 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-03-23 17:01:03 +0700
commita49f5a3f968dcc8c84759a382a0762abf0bc758b (patch)
tree15f9ee680ab8a9dbfbf2541c8b5f5ab50881ca72 /src/styles
parentd178a520534af7d1cbcc03134034ad8a2327b461 (diff)
cart, checkout, quotation
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/globals.css38
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