This commit is contained in:
Will McGugan
2022-08-14 21:29:17 +01:00
4 changed files with 26 additions and 2 deletions

8
sandbox/will/fill.css Normal file
View File

@@ -0,0 +1,8 @@
App Static {
border: heavy white;
background: blue;
color: white;
height: 100%;
box-sizing: border-box;
}

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")