aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2019-01-28 17:43:51 +0200
committershpuld <shp@cock.li>2019-01-28 17:43:51 +0200
commit1b76a5a9eabf9e33daf83ae398295ef199607695 (patch)
tree78512ff81129eb948cb6c206872b38a218e643e2 /src/App.scss
parent3b1cafc19fc8f094bb2469f194afab5b5464cecb (diff)
Add back that login error thing that someone removed
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;