diff options
| author | shpuld <shp@cock.li> | 2019-01-28 19:02:46 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-01-28 19:02:46 +0200 |
| commit | 51024a2c8af9d88b07c050b7502fa62843aa4ba2 (patch) | |
| tree | 4c6f61e08f209d6a89a8a7a5e58991c2445f9e13 /src/App.scss | |
| parent | 676acdbf82726cd78ce8611d4c6ba78c58b8fc4c (diff) | |
| parent | bb2ee04f04dac177407f7cfbc8709ed4cd9965ff (diff) | |
Merge branch 'develop' into feat/media-modal
Diffstat (limited to 'src/App.scss')
| -rw-r--r-- | src/App.scss | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss index 425c8e01..47086006 100644 --- a/src/App.scss +++ b/src/App.scss @@ -654,6 +654,33 @@ nav { border-radius: var(--inputRadius, $fallback--inputRadius); } +@keyframes shakeError { + 0% { + transform: translateX(0); + } + 15% { + transform: translateX(0.375rem); + } + 30% { + transform: translateX(-0.375rem); + } + 45% { + transform: translateX(0.375rem); + } + 60% { + transform: translateX(-0.375rem); + } + 75% { + transform: translateX(0.375rem); + } + 90% { + transform: translateX(-0.375rem); + } + 100% { + transform: translateX(0); + } +} + @media all and (max-width: 800px) { .mobile-hidden { display: none; |
