aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
diff options
context:
space:
mode:
authorA.J. Shulman <Shulman.aj@gmail.com>2025-04-27 14:57:39 -0400
committerA.J. Shulman <Shulman.aj@gmail.com>2025-04-27 14:57:39 -0400
commit393b7f8286422c933102449eba1ba82874a48896 (patch)
treec34cd5dffc7306a66fcfe54c81d8656c341facb9 /src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
parent67a7996278ce176e227393fa410e7afc80228a83 (diff)
improved consistency across doc types and parsing
Diffstat (limited to 'src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss')
-rw-r--r--src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss40
1 files changed, 38 insertions, 2 deletions
diff --git a/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss b/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
index ff5be4a38..3a8334695 100644
--- a/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
+++ b/src/client/views/nodes/chatbot/chatboxcomponents/ProgressBar.scss
@@ -58,12 +58,48 @@
flex-direction: column;
align-items: center;
text-align: center;
+ width: 80%;
+ max-width: 400px;
+ background-color: white;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
-.step-name {
+.progress-bar-wrapper {
+ width: 100%;
+ height: 12px;
+ background-color: #e0e0e0;
+ border-radius: 6px;
+ overflow: hidden;
+ margin-bottom: 10px;
+}
+
+.progress-bar {
+ height: 100%;
+ background-color: #4a90e2;
+ border-radius: 6px;
+ transition: width 0.5s ease;
+}
+
+.progress-details {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ width: 100%;
+}
+
+.progress-percentage {
font-size: 18px;
+ font-weight: bold;
color: #333;
+ margin-bottom: 5px;
+}
+
+.step-name {
+ font-size: 16px;
+ color: #666;
text-align: center;
width: 100%;
- margin-top: -10px; // Adjust to move the text closer to the spinner
+ margin-top: 5px;
}