Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f192eb7

Browse files
committedJul 22, 2024··
Remove list styling from post list
1 parent 0dc5b8c commit f192eb7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎sass/_typography.scss

+5
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ ol {
8181
padding-inline-start: 2ch;
8282
}
8383

84+
:is(ul, ol)._semantic {
85+
list-style-type: none;
86+
padding-inline-start: 0;
87+
}
88+
8489
blockquote {
8590
font-style: italic;
8691
background-color: var(--bg-1-color);

‎templates/includes/post_list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% macro post_list(posts, placeholder) %}
22
{% if posts | length > 0 %}
3-
<ul class="post-list">
3+
<ul class="post-list _semantic">
44
{% for post in posts %}
55
<li>
66
<h3>

0 commit comments

Comments
 (0)
Please sign in to comment.