aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2019-01-28 16:21:33 +0000
committerlambda <pleromagit@rogerbraun.net>2019-01-28 16:21:33 +0000
commit53712c1570fa1f603356161164a695dfeb5b53fa (patch)
treeeca0f2e7ff2d1b6e927a75ab4ebb0e3aa2d85130 /src/App.scss
parent3b1cafc19fc8f094bb2469f194afab5b5464cecb (diff)
parent4d3907b86a714c63d4a09c7d03d7f0e7b97b1b85 (diff)
Merge branch 'fix/add-back-login-error' into 'develop'
Fix/add back login error See merge request pleroma/pleroma-fe!485
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss
index ed06bbbc..ba8770e2 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: 959px) {
.mobile-hidden {
display: none;