aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/loading.module.css
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-04-08 01:51:13 +0530
committerreal-zephex <[email protected]>2024-04-08 01:51:13 +0530
commit498121d145844cd8ff28279a49c43dfbfb080299 (patch)
tree49c12a98752d7f9fe531e26c0a2bfe1070c4b412 /src/app/manga/loading.module.css
parentminor fix (diff)
downloaddramalama-498121d145844cd8ff28279a49c43dfbfb080299.tar.xz
dramalama-498121d145844cd8ff28279a49c43dfbfb080299.zip
small chanegs here and there, manga and anime pages are currently broken. changed the image proxy to cloudflare workers.
Diffstat (limited to 'src/app/manga/loading.module.css')
-rw-r--r--src/app/manga/loading.module.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/app/manga/loading.module.css b/src/app/manga/loading.module.css
new file mode 100644
index 0000000..557f50a
--- /dev/null
+++ b/src/app/manga/loading.module.css
@@ -0,0 +1,21 @@
+.Main {
+ height: 100dvh;
+ 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