mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
FIX css link
This is the part where the [guide](https://textual.textualize.io/guide/widgets/#default-css) explains the `DEFAULT_CSS` feature, leaving a small amount of css in `hello04.css`. However, the App class still links to the css file from the previous version (`hello03.css`). This PR fixes that and updates to the recent one.
This commit is contained in:
@@ -48,7 +48,7 @@ class Hello(Static):
|
||||
|
||||
|
||||
class CustomApp(App):
|
||||
CSS_PATH = "hello03.css"
|
||||
CSS_PATH = "hello04.css"
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
yield Hello()
|
||||
|
||||
Reference in New Issue
Block a user