File size: 261 Bytes
2c3c408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from textual.app import App
from textual.widgets import Static


class Clickable(Static):
    def on_click(self):
        self.app.bell()


class SpacingApp(App):
    def compose(self):
        yield Static(id="2332")


app = SpacingApp(css_path="spacing.css")