From d58a072dfcb2e8ceff18191bfd21b1d67f914c97 Mon Sep 17 00:00:00 2001 From: "Kim, Jang-hwan" Date: Tue, 22 Nov 2022 07:59:02 +0900 Subject: [PATCH] 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. --- docs/examples/guide/widgets/hello04.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/guide/widgets/hello04.py b/docs/examples/guide/widgets/hello04.py index 450f26697..40e3fc436 100644 --- a/docs/examples/guide/widgets/hello04.py +++ b/docs/examples/guide/widgets/hello04.py @@ -48,7 +48,7 @@ class Hello(Static): class CustomApp(App): - CSS_PATH = "hello03.css" + CSS_PATH = "hello04.css" def compose(self) -> ComposeResult: yield Hello()