Spaces:
Running
Running
Update flare-ui/src/app/components/chat/realtime-chat.component.scss
Browse files
flare-ui/src/app/components/chat/realtime-chat.component.scss
CHANGED
@@ -159,12 +159,27 @@ mat-card-header {
|
|
159 |
border-radius: 8px;
|
160 |
margin-top: 16px;
|
161 |
opacity: 0.3;
|
162 |
-
transition:
|
|
|
|
|
|
|
|
|
|
|
163 |
}
|
164 |
|
165 |
-
.
|
166 |
-
|
167 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
}
|
169 |
|
170 |
@keyframes visualizerPulse {
|
|
|
159 |
border-radius: 8px;
|
160 |
margin-top: 16px;
|
161 |
opacity: 0.3;
|
162 |
+
transition: all 0.3s ease;
|
163 |
+
|
164 |
+
&.active {
|
165 |
+
opacity: 1;
|
166 |
+
box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
|
167 |
+
}
|
168 |
}
|
169 |
|
170 |
+
.transcription-area {
|
171 |
+
background: #f5f5f5;
|
172 |
+
padding: 16px;
|
173 |
+
border-radius: 8px;
|
174 |
+
margin-bottom: 16px;
|
175 |
+
min-height: 60px;
|
176 |
+
animation: pulse 2s infinite;
|
177 |
+
border: 2px solid #4caf50;
|
178 |
+
|
179 |
+
&:empty::after {
|
180 |
+
content: '...';
|
181 |
+
color: #999;
|
182 |
+
}
|
183 |
}
|
184 |
|
185 |
@keyframes visualizerPulse {
|