From 0c2352636c31fba4798e8da299caa5070fd7a872 Mon Sep 17 00:00:00 2001 From: real-zephex Date: Sun, 7 Apr 2024 13:06:07 +0530 Subject: some minor fixes and qol improvements --- src/app/kdrama/styles/loading.module.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/app/kdrama/styles/loading.module.css (limited to 'src/app/kdrama/styles/loading.module.css') diff --git a/src/app/kdrama/styles/loading.module.css b/src/app/kdrama/styles/loading.module.css new file mode 100644 index 0000000..2a24411 --- /dev/null +++ b/src/app/kdrama/styles/loading.module.css @@ -0,0 +1,22 @@ +.Main { + height: 100vh; + display: flex; + justify-content: center; + align-items: center; +} + + +.LoadingContainer { + width: 50px; + height: 50px; + border-radius: 50%; + border: 8px solid; + border-color: #F4F4F4 #0000; + animation: s1 1s infinite; +} + +@keyframes s1 { + to { + transform: rotate(.5turn) + } +} \ No newline at end of file -- cgit v1.2.3