From acd9402bc17a16e653a5ce565c590d7bd854ec44 Mon Sep 17 00:00:00 2001 From: "p.belezov" Date: Thu, 21 Dec 2023 17:29:55 +0800 Subject: [PATCH] Fixed background animation --- resources/views/Caesar.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/resources/views/Caesar.vue b/resources/views/Caesar.vue index 5a05701..ddd2b58 100644 --- a/resources/views/Caesar.vue +++ b/resources/views/Caesar.vue @@ -116,6 +116,19 @@ export default { height: 100vh; } +@keyframes gradient { + 0% { + background-position: 0 50%; + } + 50% { + background-position: 100% 50%; + } + 100% { + background-position: 0 50%; + } +} + + .customBtn { background-color: #0d47a1; color: mintcream;