compensated in box mode for scrollbars

This commit is contained in:
Will McGugan
2022-05-22 08:59:36 +01:00
parent 7101b416c7
commit af6a9a850d
4 changed files with 47 additions and 21 deletions

View File

@@ -84,7 +84,7 @@ Tweet {
/* border: outer $primary; */
padding: 1;
border: wide $panel-darken-2;
overflow-y: auto;
overflow: auto;
/* scrollbar-gutter: stable; */
align-horizontal: center;
box-sizing: border-box;
@@ -114,10 +114,10 @@ TweetHeader {
}
TweetBody {
width: 100w;
width: 130%;
background: $panel;
color: $text-panel;
height: auto;
height: auto;
padding: 0 1 0 0;
}

View File

@@ -159,9 +159,7 @@ class BasicApp(App):
app = BasicApp(
css_path="basic.css",
watch_css=True,
log_path="textual.log",
css_path="basic.css", watch_css=True, log_path="textual.log", log_verbosity=1
)
if __name__ == "__main__":