summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2020-05-10 23:42:03 +0100
committerAndreas Kling <kling@serenityos.org>2020-05-11 10:48:54 +0200
commit8edf2bbcbd5c1549335eadae2e781f4fcc5c1b54 (patch)
treea1ff0f137562f583ea08799b682d471089d6823c /Libraries
parent51707b6c6802b85782817fe9bcc7ea1b7b6ac082 (diff)
downloadserenity-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.css3
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;
}