From 154b2a214b2a30b00f33ed3b94d1e1a499edfa79 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Thu, 5 Apr 2018 09:20:53 -0700 Subject: [PATCH] animate modal. --- resources/public/index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/resources/public/index.html b/resources/public/index.html index 722c716e..37eb6a23 100644 --- a/resources/public/index.html +++ b/resources/public/index.html @@ -26,6 +26,9 @@ @keyframes scaleUp { from { opacity: 0; transform: scale(.95); } } + @keyframes appear { + from { opacity: 0; } + } @keyframes moveToTop { from { } @@ -61,6 +64,10 @@ color: #2EB398; border: 3px solid #2EB398; } + + .modal { + animation: appear .7s ease both; + } .inbox-messages { animation: scaleUp .7s ease both; }