From 80e5af02b5a767408b1521486aefab58dfce5aa9 Mon Sep 17 00:00:00 2001 From: Clearsu Date: Thu, 14 Dec 2023 17:37:02 +0900 Subject: [PATCH] =?UTF-8?q?[Style]=20=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?=EC=A0=9C=EB=AA=A9=20=ED=9A=A8=EA=B3=BC=20=EC=B6=94=EA=B0=80=20?= =?UTF-8?q?#1160?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/tournament-record/TournamentRecord.module.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/styles/tournament-record/TournamentRecord.module.scss b/styles/tournament-record/TournamentRecord.module.scss index 40b06593f..37f66bb91 100644 --- a/styles/tournament-record/TournamentRecord.module.scss +++ b/styles/tournament-record/TournamentRecord.module.scss @@ -10,10 +10,21 @@ } } +@keyframes text-fade-in-out { + 0%, + 100% { + text-shadow: rgb(255, 209, 91) 0 0 10px; + } + 50% { + text-shadow: rgb(254, 196, 51) 0 0 20px; + } +} + .title { @include pageTitle; display: flex; justify-content: center; + animation: text-fade-in-out 4s infinite; } .winnerImageContainer {