Skip to content

Commit 7d8cb81

Browse files
committed
fix: Change articles-list-item id to class
1 parent a7b11d7 commit 7d8cb81

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/src/scss/articles.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
}
4545
}
4646

47-
#articles-list-item {
47+
.articles-list-item {
4848
display: block;
4949
margin-bottom: 50px;
50-
}
50+
}

app/templates/articles.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<section id="articles-container">
2222
<ul>
2323
<% articles.reverse().map((article) => { %>
24-
<li id="articles-list-item">
24+
<li class="articles-list-item">
2525
<a href="./article/<%= article.id %>.html">
2626
<h1><%= article.title %></h1>
2727
<% if (article.subtitle) { %>

0 commit comments

Comments
 (0)