Files
textual/docs/examples/styles/width.py
2022-05-26 11:15:44 +01:00

18 lines
251 B
Python

from textual.app import App
from textual.widget import Widget
class WidthApp(App):
CSS = """
Widget {
background: blue 50%;
width: 50%;
}
"""
def compose(self):
yield Widget()
app = WidthApp()