From 4f074af970f406997c6ae1be82e5df761d5966c2 Mon Sep 17 00:00:00 2001 From: "HATEC\\SPVDEV001" Date: Fri, 14 Jul 2023 11:02:07 +0700 Subject: bugx fix css --- src/styles/globals.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/styles') diff --git a/src/styles/globals.css b/src/styles/globals.css index 00c4d08f..cb55d768 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -457,7 +457,9 @@ button { } .table-data { - @apply w-full; + @apply w-full + table-auto + border-collapse;; } .table-data thead tr { @@ -476,7 +478,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 { -- cgit v1.2.3 From e39d3b0082e83ad08044918f0b6d8e977223100d Mon Sep 17 00:00:00 2001 From: "HATEC\\SPVDEV001" Date: Mon, 17 Jul 2023 16:30:17 +0700 Subject: feedback UAT --- src/styles/globals.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/styles') diff --git a/src/styles/globals.css b/src/styles/globals.css index cb55d768..d6594069 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -626,3 +626,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); } + } -- cgit v1.2.3