ciyidogan commited on
Commit
75ccf1e
·
verified ·
1 Parent(s): 1bffd96

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: opacity 0.3s;
 
 
 
 
 
163
  }
164
 
165
- .audio-visualizer.active {
166
- opacity: 1;
167
- animation: visualizerPulse 0.5s ease-in-out infinite;
 
 
 
 
 
 
 
 
 
 
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 {