summaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
authorHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-07-17 16:58:42 +0700
committerHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-07-17 16:58:42 +0700
commite76d537689d08fb4c15d482ffa996b8012dbc941 (patch)
tree17267b16ba50c89d55c29ea8c962312c05bdcb70 /src/styles
parent581334e8d077916c3a9ab87fd5b6e6b5126aba12 (diff)
parente39d3b0082e83ad08044918f0b6d8e977223100d (diff)
Merge branch 'Feature/voucher' into Feature/promotion_programvaoucher
# Conflicts: # src/lib/cart/components/Cart.jsx # src/lib/checkout/components/Checkout.jsx # src/lib/product/components/Product/Product.jsx # src/lib/product/components/Product/ProductDesktop.jsx # src/lib/product/components/Product/ProductMobile.jsx
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/globals.css15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/styles/globals.css b/src/styles/globals.css
index 7d571e3f..af9f9bea 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -461,7 +461,9 @@ button {
}
.table-data {
- @apply w-full;
+ @apply w-full
+ table-auto
+ border-collapse;;
}
.table-data thead tr {
@@ -480,7 +482,7 @@ button {
}
.table-data tbody td {
- @apply text-gray_r-12/90 first:whitespace-nowrap;
+ @apply text-gray_r-12/90;
}
.table-data tbody tr {
@@ -628,3 +630,12 @@ button {
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
+
+@keyframes shake {
+ 0% { transform: translateX(0); }
+ 10%, 90% { transform: translateX(-10px); }
+ 20%, 80% { transform: translateX(10px); }
+ 30%, 50%, 70% { transform: translateX(-10px); }
+ 40%, 60% { transform: translateX(10px); }
+ 100% { transform: translateX(0); }
+ }