Skip to content

Commit

Permalink
fix sizing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Aug 21, 2024
1 parent 616baa0 commit 5fdee1f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/textual/widgets/_help_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class HelpPanel(Widget):
#widget-help {
height: auto;
max-height: 50%;
width: 100%;
width: 1fr;
padding: 0;
margin: 0;
padding: 1 0;
Expand All @@ -50,8 +50,9 @@ class HelpPanel(Widget):
}
KeyPanel#keys-help {
width: 100%;
height: 1fr;
width: 1fr;
height: 1fr;
min-width: initial;
split: initial;
border-left: none;
padding: 0;
Expand Down

0 comments on commit 5fdee1f

Please sign in to comment.