diff --git a/public/index.css b/public/index.css index 8272991..7d3dc99 100644 --- a/public/index.css +++ b/public/index.css @@ -1,13 +1,5 @@ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap"); @import url("https://unpkg.com/@fortawesome/fontawesome-free@5.15.4/css/all.min.css"); -@keyframes fadeInAnimation { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} body { font-family: "Roboto", sans-serif; @@ -16,9 +8,6 @@ body { display: flex; flex-direction: column; min-height: 100vh; - animation: fadeInAnimation ease-in-out 0.3s; - animation-iteration-count: 1; - animation-fill-mode: forwards; } .fa-magnifying-glass { @@ -134,7 +123,4 @@ form input { form input:focus { border: 1px solid rgba(253, 253, 253, 0.514); border-radius: 6px; - animation: fadeInAnimation ease-in-out 0.3s; - animation-iteration-count: 1; - animation-fill-mode: forwards; }