diff options
author | 2021-12-22 16:11:05 -0500 | |
---|---|---|
committer | 2021-12-22 16:11:05 -0500 | |
commit | 6ddd7678ffb6598ae6e263706813cb5e94535f02 (patch) | |
tree | d4b45f7590b59c3574bd6593b17d8066f71007c6 /examples/blog/src/components/Heading.astro | |
parent | 305ce4182fbe89abcfb88008ddce178bd8863b6a (diff) | |
download | astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.gz astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.zst astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.zip |
Use accessible indentation (#2253)
Diffstat (limited to 'examples/blog/src/components/Heading.astro')
-rw-r--r-- | examples/blog/src/components/Heading.astro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/blog/src/components/Heading.astro b/examples/blog/src/components/Heading.astro index f1805aaf7..fec49b538 100644 --- a/examples/blog/src/components/Heading.astro +++ b/examples/blog/src/components/Heading.astro @@ -1,9 +1,9 @@ <h1> - <slot/> + <slot /> </h1> <style> - h1 { - color: red; - } + h1 { + color: red; + } </style> |