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