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:
Kim, Jang-hwan
2022-11-22 07:59:02 +09:00
committed by GitHub
parent f5db48211f
commit d58a072dfc

View File

@@ -48,7 +48,7 @@ class Hello(Static):
class CustomApp(App):
CSS_PATH = "hello03.css"
CSS_PATH = "hello04.css"
def compose(self) -> ComposeResult:
yield Hello()