diff options
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/globals.css | 15 |
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); } + } |
