Spaces:
Running
Running
fix(sidebar): restore section padding to 16px top / 10px bottom
Browse files12px 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>
- 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:
|
| 304 |
-
padding-bottom:
|
| 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 |
|