diff --git a/src/components/LoadingScreen/LoadingScreen.module.css b/src/components/LoadingScreen/LoadingScreen.module.css index 1530e13..19f4318 100644 --- a/src/components/LoadingScreen/LoadingScreen.module.css +++ b/src/components/LoadingScreen/LoadingScreen.module.css @@ -14,4 +14,59 @@ font-style: normal; font-weight: 400; line-height: normal; +} + +.factContainer { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + + color: #FFF; + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: normal; +} + +.factHeader { + color: var(--accent); + font-size: 14px; + font-style: normal; + font-weight: 600; + line-height: normal; + text-transform: uppercase; +} + +.progressRoot { + display: flex; + width: 350px; + padding: 5px; + flex-direction: column; + justify-content: center; + align-items: flex-start; + gap: 10px; + + border-radius: 97px; + background: rgba(255, 255, 255, 0.025); +} + +.progressIndicator { + width: 100%; + height: 5px; + + border-radius: 55px; + background: var(--accent); + + animation-name: progressAnimation; + animation-duration: 2s; +} + +@keyframes progressAnimation { + from { + width: 0%; + } + to { + width: 100%; + } } \ No newline at end of file diff --git a/src/components/LoadingScreen/index.tsx b/src/components/LoadingScreen/index.tsx index 49bde5a..6a5d0ef 100644 --- a/src/components/LoadingScreen/index.tsx +++ b/src/components/LoadingScreen/index.tsx @@ -1,8 +1,16 @@ import styles from "./LoadingScreen.module.css"; +import * as Progress from "@radix-ui/react-progress"; const LoadingScreen: React.FC = () => { return
-

Loading...

+ + + + +
+

Fun Fact

+ YARG stands for Yet Another Rhythm Game +
; }; diff --git a/src/routes/Queue/Queue.module.css b/src/routes/Queue/Queue.module.css index ac03685..b381c84 100644 --- a/src/routes/Queue/Queue.module.css +++ b/src/routes/Queue/Queue.module.css @@ -5,6 +5,8 @@ align-items: flex-start; gap: 25px; align-self: stretch; + + z-index: 1000; } .banner {