prashantmatlani commited on
Commit
cfed9ea
·
1 Parent(s): d9264ca

style.css

Browse files
Files changed (1) hide show
  1. web/style.css +20 -19
web/style.css CHANGED
@@ -150,6 +150,7 @@ textarea:focus {
150
 
151
 
152
  /* Layout Splits */
 
153
  .main-container {
154
  display: flex;
155
  gap: 20px;
@@ -158,13 +159,13 @@ textarea:focus {
158
  }
159
 
160
  .left-panel {
161
- flex: 0 0 45%;
162
  display: flex;
163
  flex-direction: column;
164
  }
165
 
166
  .right-panel {
167
- flex: 0 0 55%;
168
  border-left: 2px solid #555;
169
  padding-left: 20px;
170
  }
@@ -199,12 +200,12 @@ textarea:focus {
199
  cursor: pointer;
200
  }
201
 
202
- .agent-box h3 {
203
- margin: 0 0 10px 0;
204
- font-size: 1rem;
205
- color: #4CAF50;
206
- text-align: center;
207
- }
208
 
209
  /* 🔹 THE CRITICAL FIX: Scrollbar per agent */
210
  .agent-content {
@@ -217,16 +218,16 @@ textarea:focus {
217
  padding: 5px;
218
  }
219
 
220
- .agent-content.revealed {
221
- filter: blur(0);
222
- }
223
 
224
- /* Scrollbar Styling */
225
- .agent-content::-webkit-scrollbar {
226
- width: 6px;
227
- }
228
 
229
- .agent-content::-webkit-scrollbar-thumb {
230
- background: #444;
231
- border-radius: 3px;
232
- }
 
150
 
151
 
152
  /* Layout Splits */
153
+ /* Forces the two panels to stand next to each other */
154
  .main-container {
155
  display: flex;
156
  gap: 20px;
 
159
  }
160
 
161
  .left-panel {
162
+ flex: 0 0 45%; /* Keeps conversation at 45% width */
163
  display: flex;
164
  flex-direction: column;
165
  }
166
 
167
  .right-panel {
168
+ flex: 0 0 55%; /* Keeps Broad-Board at 55% width */
169
  border-left: 2px solid #555;
170
  padding-left: 20px;
171
  }
 
200
  cursor: pointer;
201
  }
202
 
203
+ .agent-box h3 {
204
+ margin: 0 0 10px 0;
205
+ font-size: 1rem;
206
+ color: #4CAF50;
207
+ text-align: center;
208
+ }
209
 
210
  /* 🔹 THE CRITICAL FIX: Scrollbar per agent */
211
  .agent-content {
 
218
  padding: 5px;
219
  }
220
 
221
+ .agent-content.revealed {
222
+ filter: blur(0);
223
+ }
224
 
225
+ /* Scrollbar Styling */
226
+ .agent-content::-webkit-scrollbar {
227
+ width: 6px;
228
+ }
229
 
230
+ .agent-content::-webkit-scrollbar-thumb {
231
+ background: #444;
232
+ border-radius: 3px;
233
+ }