doc fixes

This commit is contained in:
Will McGugan
2022-09-14 17:54:27 +01:00
parent 9816c2643f
commit 8a31523e09
3 changed files with 13 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ class BorderApp(App):
def on_mount(self) -> None:
self.widget.styles.background = "darkblue"
self.widget.styles.width = "50%"
self.widget.styles.border = ("tall", "yellow")
self.widget.styles.border = ("heavy", "yellow")
app = BorderApp()

View File

@@ -19,7 +19,7 @@ class OutlineApp(App):
def on_mount(self) -> None:
self.widget.styles.background = "darkblue"
self.widget.styles.width = "50%"
self.widget.styles.outline = ("tall", "yellow")
self.widget.styles.outline = ("heavy", "yellow")
app = OutlineApp()