diff --git a/src/news-side-list.html b/src/news-side-list.html index 1bd634ff..c2d42922 100644 --- a/src/news-side-list.html +++ b/src/news-side-list.html @@ -24,11 +24,20 @@ @apply(--app-sub-section-headline); } + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { + margin: 20px 0; + } + a { text-decoration: none; color: inherit; display: block; - margin: 20px 0; } .category { @@ -41,12 +50,12 @@ white-space: nowrap; } - :host([featured]) > a { + :host([featured]) li { padding-bottom: 24px; border-bottom: var(--app-border-style); } - :host([featured]) > a:last-of-type { + :host([featured]) li:last-of-type { border-bottom: none; } @@ -72,13 +81,15 @@

+