aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-10-10 19:30:06 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-10-10 19:30:06 -0400
commit373340938a4bc48edb4b9345f28e562de41153d6 (patch)
treed6604992d93a12920e1b62a1f906735d59434765 /src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
parent772c7a4c4d8867cbc33a673c3e3c6f3e330d395d (diff)
parent5752dff8ff7b1b2858542feec0b1bb037461bf1a (diff)
Merge branch 'nathan-starter' of https://github.com/brown-dash/Dash-Web into nathan-starter
Diffstat (limited to 'src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss')
-rw-r--r--src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss b/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
new file mode 100644
index 000000000..ff5be4a38
--- /dev/null
+++ b/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
@@ -0,0 +1,69 @@
+.spinner-container {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+}
+
+.spinner {
+ width: 60px;
+ height: 60px;
+ position: relative;
+ margin-bottom: 20px; // Space between spinner and text
+}
+
+.double-bounce1,
+.double-bounce2 {
+ width: 100%;
+ height: 100%;
+ border-radius: 50%;
+ background-color: #4a90e2;
+ opacity: 0.6;
+ position: absolute;
+ top: 0;
+ left: 0;
+ animation: bounce 2s infinite ease-in-out;
+}
+
+.double-bounce2 {
+ animation-delay: -1s;
+}
+
+@keyframes bounce {
+ 0%,
+ 100% {
+ transform: scale(0);
+ }
+ 50% {
+ transform: scale(1);
+ }
+}
+
+.uploading-overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background-color: rgba(255, 255, 255, 0.8);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 1000;
+}
+
+.progress-container {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+}
+
+.step-name {
+ font-size: 18px;
+ color: #333;
+ text-align: center;
+ width: 100%;
+ margin-top: -10px; // Adjust to move the text closer to the spinner
+}