mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
19 lines
282 B
Python
19 lines
282 B
Python
from textual.app import App
|
|
from textual.widget import Widget
|
|
|
|
|
|
class HeightApp(App):
|
|
CSS = """
|
|
Screen > Widget {
|
|
background: green;
|
|
height: 50%;
|
|
color: white;
|
|
}
|
|
"""
|
|
|
|
def compose(self):
|
|
yield Widget()
|
|
|
|
|
|
app = HeightApp()
|