summaryrefslogtreecommitdiff
path: root/client/assets/styles.css
diff options
context:
space:
mode:
authorBlaster4385 <venkatesh@tablaster.dev>2024-07-25 21:00:24 +0530
committerBlaster4385 <venkatesh@tablaster.dev>2024-07-25 21:42:47 +0530
commitd7d69f6d2fe6dad10057a6d45fbf0b0d91ed9355 (patch)
treea045468c34dcb3a2b92e6a6abb761592a56d8b81 /client/assets/styles.css
parent330f38289a0c83b60a6ab4a310e6bee24e2fe2a5 (diff)
feat: add progress bar while uploading
Diffstat (limited to 'client/assets/styles.css')
-rw-r--r--client/assets/styles.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/client/assets/styles.css b/client/assets/styles.css
index 983ca51..c5b1dcc 100644
--- a/client/assets/styles.css
+++ b/client/assets/styles.css
@@ -110,6 +110,24 @@ body {
opacity: 1;
}
+.upload__progress {
+ width: 90%;
+ height: 20px;
+ background-color: #a89984;
+ border-radius: 8px;
+ overflow: hidden;
+ margin: 1rem;
+ position: absolute;
+ bottom: 5%;
+}
+
+.upload__progress__fill {
+ height: 100%;
+ width: 0;
+ background-color: #504945;
+ transition: width 0.2s ease-in-out;
+}
+
a {
text-decoration: none;
color: inherit;