fix for percentage scalars

This commit is contained in:
Will McGugan
2022-08-14 21:26:16 +01:00
parent b741810fce
commit 5c56ba20d5
4 changed files with 30 additions and 4 deletions

10
sandbox/will/fill.py Normal file
View File

@@ -0,0 +1,10 @@
from textual.app import App, ComposeResult
from textual.widgets import Static
class FillApp(App):
def compose(self) -> ComposeResult:
yield Static("Hello")
app = FillApp(css_path="fill.css")