diff options
author | Linus Groh <mail@linusgroh.de> | 2020-05-10 23:42:03 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-11 10:48:54 +0200 |
commit | 8edf2bbcbd5c1549335eadae2e781f4fcc5c1b54 (patch) | |
tree | a1ff0f137562f583ea08799b682d471089d6823c /Libraries | |
parent | 51707b6c6802b85782817fe9bcc7ea1b7b6ac082 (diff) | |
download | serenity-8edf2bbcbd5c1549335eadae2e781f4fcc5c1b54.zip |
LibWeb: Set nav, main, article, aside, section to "display: block"
This makes the blog posts on awesomekling.github.io show up :^)
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibWeb/CSS/Default.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Libraries/LibWeb/CSS/Default.css b/Libraries/LibWeb/CSS/Default.css index 01d305d518..01630a83cf 100644 --- a/Libraries/LibWeb/CSS/Default.css +++ b/Libraries/LibWeb/CSS/Default.css @@ -52,7 +52,8 @@ h1, h2, h3, h4, h5, h6, noframes, ol, p, ul, center, dir, hr, menu, pre, -header, footer { +header, footer, nav, main, +article, aside, section { display: block; } |