@@ -162,25 +162,27 @@ export const TimeRangeControls: FunctionComponent<TimeRangeControlsProps> = ({
162
162
< div
163
163
style = { {
164
164
display : "flex" ,
165
- gap : "8px " ,
165
+ gap : "6px " ,
166
166
alignItems : "center" ,
167
167
background : "#f8f9fa" ,
168
- padding : "8px 12px " ,
169
- borderRadius : "6px " ,
168
+ padding : "3px 8px " ,
169
+ borderRadius : "5px " ,
170
170
border : "1px solid #e9ecef" ,
171
- boxShadow : "0 1px 3px rgba(0,0,0,0.05)" ,
171
+ boxShadow : "0 1px 2px rgba(0,0,0,0.05)" ,
172
+ margin : "1px 0" ,
172
173
} }
173
174
>
174
175
< div
175
176
style = { {
176
- fontSize : "0.9rem " ,
177
+ fontSize : "0.85rem " ,
177
178
color : "#495057" ,
178
179
fontFamily :
179
180
"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif" ,
180
181
display : "flex" ,
181
182
alignItems : "center" ,
182
- gap : "4px " ,
183
+ gap : "3px " ,
183
184
minWidth : "130px" ,
185
+ whiteSpace : "nowrap" ,
184
186
} }
185
187
>
186
188
< span style = { { fontWeight : 500 } } > { label } </ span >
@@ -194,11 +196,11 @@ export const TimeRangeControls: FunctionComponent<TimeRangeControlsProps> = ({
194
196
onKeyDown = { handleDurationKeyDown }
195
197
style = { {
196
198
width : "60px" ,
197
- padding : "2px 4px " ,
199
+ padding : "1px 3px " ,
198
200
border : "1px solid #ced4da" ,
199
201
borderRadius : "4px" ,
200
- fontSize : "0.9rem " ,
201
- marginLeft : "8px " ,
202
+ fontSize : "0.85rem " ,
203
+ marginLeft : "6px " ,
202
204
} }
203
205
/>
204
206
) : (
@@ -228,10 +230,10 @@ export const TimeRangeControls: FunctionComponent<TimeRangeControlsProps> = ({
228
230
onKeyDown = { handleStartTimeKeyDown }
229
231
style = { {
230
232
width : "60px" ,
231
- padding : "2px 4px " ,
233
+ padding : "1px 3px " ,
232
234
border : "1px solid #ced4da" ,
233
235
borderRadius : "4px" ,
234
- fontSize : "0.9rem " ,
236
+ fontSize : "0.85rem " ,
235
237
} }
236
238
/>
237
239
) : (
@@ -313,25 +315,27 @@ export const ItemRangeControls: FunctionComponent<ItemRangeControlsProps> = ({
313
315
< div
314
316
style = { {
315
317
display : "flex" ,
316
- gap : "8px " ,
318
+ gap : "6px " ,
317
319
alignItems : "center" ,
318
320
background : "#f8f9fa" ,
319
- padding : "8px 12px " ,
320
- borderRadius : "6px " ,
321
+ padding : "3px 8px " ,
322
+ borderRadius : "5px " ,
321
323
border : "1px solid #e9ecef" ,
322
- boxShadow : "0 1px 3px rgba(0,0,0,0.05)" ,
324
+ boxShadow : "0 1px 2px rgba(0,0,0,0.05)" ,
325
+ margin : "1px 0" ,
323
326
} }
324
327
>
325
328
< div
326
329
style = { {
327
- fontSize : "0.9rem " ,
330
+ fontSize : "0.85rem " ,
328
331
color : "#495057" ,
329
332
fontFamily :
330
333
"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif" ,
331
334
display : "flex" ,
332
335
alignItems : "center" ,
333
- gap : "8px " ,
336
+ gap : "6px " ,
334
337
minWidth : "70px" ,
338
+ whiteSpace : "nowrap" ,
335
339
} }
336
340
>
337
341
{ itemLabel && < span style = { { fontWeight : 500 } } > { itemLabel } </ span > }
@@ -382,14 +386,16 @@ export const CondensedLayout: FunctionComponent<{
382
386
} > = ( { children } ) => (
383
387
< div
384
388
style = { {
385
- padding : "6px " ,
389
+ padding : "3px " ,
386
390
background : "#f5f5f5" ,
387
391
borderRadius : "5px" ,
388
392
fontFamily : "sans-serif" ,
389
- fontSize : "0.9rem " ,
393
+ fontSize : "0.85rem " ,
390
394
display : "flex" ,
391
- gap : "16px" ,
395
+ gap : "6px" ,
396
+ rowGap : "3px" ,
392
397
alignItems : "center" ,
398
+ flexWrap : "wrap" ,
393
399
} }
394
400
>
395
401
{ children }
@@ -407,18 +413,19 @@ export const FullLayout: FunctionComponent<{
407
413
return (
408
414
< div
409
415
style = { {
410
- padding : "10px " ,
416
+ padding : "4px " ,
411
417
background : "#f5f5f5" ,
412
418
borderRadius : "5px" ,
413
419
fontFamily : "sans-serif" ,
414
- fontSize : "0.9rem " ,
420
+ fontSize : "0.85rem " ,
415
421
} }
416
422
>
417
- < div style = { { marginBottom : "12px " } } > { recordingInfo } </ div >
423
+ < div style = { { marginBottom : "4px " } } > { recordingInfo } </ div >
418
424
< div
419
425
style = { {
420
426
display : "flex" ,
421
- gap : "12px" ,
427
+ gap : "6px" ,
428
+ rowGap : "3px" ,
422
429
alignItems : "flex-start" ,
423
430
flexWrap : "wrap" ,
424
431
overflowX : "auto" ,
@@ -445,25 +452,27 @@ export const SeparationControls: FunctionComponent<SeparationControlsProps> = ({
445
452
< div
446
453
style = { {
447
454
display : "flex" ,
448
- gap : "8px " ,
455
+ gap : "6px " ,
449
456
alignItems : "center" ,
450
457
background : "#f8f9fa" ,
451
- padding : "8px 12px " ,
452
- borderRadius : "6px " ,
458
+ padding : "3px 8px " ,
459
+ borderRadius : "5px " ,
453
460
border : "1px solid #e9ecef" ,
454
- boxShadow : "0 1px 3px rgba(0,0,0,0.05)" ,
461
+ boxShadow : "0 1px 2px rgba(0,0,0,0.05)" ,
462
+ margin : "1px 0" ,
455
463
} }
456
464
>
457
465
< div
458
466
style = { {
459
- fontSize : "0.9rem " ,
467
+ fontSize : "0.85rem " ,
460
468
color : "#495057" ,
461
469
fontFamily :
462
470
"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif" ,
463
471
display : "flex" ,
464
472
alignItems : "center" ,
465
- gap : "4px " ,
473
+ gap : "3px " ,
466
474
minWidth : "70px" ,
475
+ whiteSpace : "nowrap" ,
467
476
} }
468
477
>
469
478
< span style = { { fontWeight : 500 } } > Separation</ span >
0 commit comments