We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b11d7 commit 7d8cb81Copy full SHA for 7d8cb81
app/src/scss/articles.scss
@@ -44,7 +44,7 @@
44
}
45
46
47
-#articles-list-item {
+.articles-list-item {
48
display: block;
49
margin-bottom: 50px;
50
-}
+}
app/templates/articles.ejs
@@ -21,7 +21,7 @@
21
<section id="articles-container">
22
<ul>
23
<% articles.reverse().map((article) => { %>
24
- <li id="articles-list-item">
+ <li class="articles-list-item">
25
<a href="./article/<%= article.id %>.html">
26
<h1><%= article.title %></h1>
27
<% if (article.subtitle) { %>
0 commit comments