We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e66c098 commit 746ce1bCopy full SHA for 746ce1b
src/textual/widgets/_text_area.py
@@ -115,7 +115,10 @@ class TextArea(ScrollView):
115
width: 1fr;
116
height: 1fr;
117
border: tall $border-blurred;
118
- padding: 0 1;
+ /* Remove right padding so the vertical scrollbar aligns consistently
119
+ with other scrollable widgets (Tree, OptionList, VerticalScroll).
120
+ Issue: Textualize/textual#5954 */
121
+ padding: 0;
122
color: $foreground;
123
background: $surface;
124
&.-textual-compact {
0 commit comments