diff options
| author | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-07-17 16:30:17 +0700 |
|---|---|---|
| committer | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-07-17 16:30:17 +0700 |
| commit | e39d3b0082e83ad08044918f0b6d8e977223100d (patch) | |
| tree | a8631dbc08d9211f4b4d127962baba5fa99956fe /src/styles/globals.css | |
| parent | e3679ab4a7c58f6b8b9ac661b3adaa8d2dc0b0f2 (diff) | |
feedback UAT
Diffstat (limited to 'src/styles/globals.css')
| -rw-r--r-- | src/styles/globals.css | 9 |
1 files changed, 9 insertions, 0 deletions
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); } + } |
