Skip to content

Commit

Permalink
removed list styles in post list
Browse files Browse the repository at this point in the history
  • Loading branch information
legoraft committed Sep 25, 2024
1 parent c0976c5 commit c1a79b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _includes/post-list.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<ul>
<ul class="postlist">
{% for post in site.posts %}
<li class="postlist">
<li>
<a class="postlink">
<p id="date">{{ post.date | date: "%Y-%m-%d }}</p>
<p id="title">{{ post.title }}</p>
Expand Down
6 changes: 5 additions & 1 deletion _sass/post-list.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
@import "variables";

li.postlist {
ul.postlist {
list-style: none;
}

li {
a.postlink {
display: flex;
text-decoration: none;
Expand Down

0 comments on commit c1a79b1

Please sign in to comment.