From e46c51d61c21d6cf51d6e3e6f04e3ae66e419574 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Fri, 14 Oct 2022 08:41:02 +0100 Subject: [PATCH] Fix whitespace Includes pre-commit hook changes. --- docs/guide/CSS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/guide/CSS.md b/docs/guide/CSS.md index bfac0d098..d7af28995 100644 --- a/docs/guide/CSS.md +++ b/docs/guide/CSS.md @@ -82,7 +82,7 @@ With the above example, the DOM will look like the following: This doesn't look much like a tree yet. Let's add a header and a footer to this application, which will create more _branches_ of the tree: === "dom2.py" - + ```python hl_lines="7 8" --8<-- "docs/examples/guide/dom2.py" ``` @@ -427,4 +427,3 @@ Variables can refer to other variables. Let's say we define a variable `$success: lime;`. Our `$border` variable could then be updated to `$border: wide $success;`, which will be translated to `$border: wide lime;`. -