diff options
| author | trisusilo <tri.susilo@altama.co.id> | 2023-07-24 08:35:11 +0000 |
|---|---|---|
| committer | trisusilo <tri.susilo@altama.co.id> | 2023-07-24 08:35:11 +0000 |
| commit | 5be5be868124e7d4b21ab2137f45006380e3d0a1 (patch) | |
| tree | d7c4151eb2bf83b85cd0532d45dedd02aa06694e /src/styles | |
| parent | bed971bc1265cd9b0e6f0c01dcb57bf4089c21f9 (diff) | |
| parent | 2de322571bad7490baaf439fa2bb12124c646bb5 (diff) | |
Merged in CR/widget_WA (pull request #17)
CR/widget WA
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/globals.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/styles/globals.css b/src/styles/globals.css index cb55d768..af9f9bea 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -70,7 +70,7 @@ button { } .badge-yellow { - @apply bg-warning-200 + @apply bg-warning-500 text-warning-900; } @@ -396,11 +396,15 @@ button { } .table-specification > table { - @apply table-fixed + @apply table-auto border-collapse w-full; } +.table-specification > table > thead > tr > th:last-child{ + @apply w-3/12; +} + .table-specification > table > thead { @apply sticky top-0 border-b; } @@ -626,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); } + } |
