From c3d7cde4cfaa91177de6b5004f96a71960299b25 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Thu, 28 Jul 2022 18:39:26 +1000 Subject: [PATCH] Update app.css --- public/css/app.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/public/css/app.css b/public/css/app.css index 22b4fe4..2569380 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -10,9 +10,24 @@ } } +@keyframes alertanim { + 0% { + top: 0px; + animation-timing-function: linear; + } + + 100% { + background-position-x: 72px; + animation-timing-function: linear; + } +} + #alert, #success { height: fit-content; margin: 0px; + animation: alertanim; + animation-duration: 250ms; + animation-iteration-count: 1; position: fixed; top: 72px; padding-top: 2px;