diff --git a/styles/tournament-record/UserTournamentBracket.module.scss b/styles/tournament-record/UserTournamentBracket.module.scss deleted file mode 100644 index 6643c30cd..000000000 --- a/styles/tournament-record/UserTournamentBracket.module.scss +++ /dev/null @@ -1,33 +0,0 @@ -@import 'styles/common.scss'; - -.bracketContainer { - display: flex; - width: 100%; - height: 30rem; - margin-top: 1rem; - overflow: hidden; - background-color: rgba(112, 0, 225, 0.17); - border: 1px solid #c67dff; - border-radius: 26px; - align-items: center; - justify-content: center; -} - -@keyframes Rotate { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.loadingAnimation { - width: 3rem; - height: 3rem; - border: 0.3rem solid rgb(167, 167, 167); - border-top-color: transparent; - border-left-color: transparent; - border-radius: 50%; - animation: Rotate 0.8s infinite linear; -} diff --git a/styles/tournament/UserTournamentBracket.module.scss b/styles/tournament/UserTournamentBracket.module.scss new file mode 100644 index 000000000..1026dd6a6 --- /dev/null +++ b/styles/tournament/UserTournamentBracket.module.scss @@ -0,0 +1,19 @@ +.bracketContainer { + display: flex; + width: 100%; + height: 30rem; + margin-top: 1rem; + overflow: hidden; + background-color: rgba(112, 0, 225, 0.17); + border: 1px solid #c67dff; + border-radius: 26px; + align-items: center; + justify-content: center; +} + +.noTournamentText { + display: flex; + color: white; + justify-content: center; + align-content: center; +}