umanggarg Claude Sonnet 4.6 commited on
Commit
e6a568f
·
1 Parent(s): faa69dc

fix(sidebar): restore section padding to 16px top / 10px bottom

Browse files

12px was too tight against dividers; the original spacing complaint
was the flex:1 empty stretch (fixed separately), not section padding.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. ui/src/index.css +2 -2
ui/src/index.css CHANGED
@@ -300,8 +300,8 @@ textarea:focus-visible {
300
  .sidebar-section {
301
  display: flex;
302
  flex-direction: column;
303
- padding-top: 12px;
304
- padding-bottom: 4px;
305
  border-top: 1px solid var(--border-strong);
306
  }
307
 
 
300
  .sidebar-section {
301
  display: flex;
302
  flex-direction: column;
303
+ padding-top: 16px;
304
+ padding-bottom: 10px;
305
  border-top: 1px solid var(--border-strong);
306
  }
307