Skip to content

Commit dba3e5a

Browse files
committed
fix(.post__list__item): adjust post index item styles
1 parent eaa3171 commit dba3e5a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="static-content">
44
{{#foreach posts}}
5-
<h3><a href="{{url}}">{{title}}</a></h3>
5+
<a class="post__list__item" href="{{url}}">{{title}}</a>
66
<p><em>{{date published_at format="MMMM DD, YYYY"}}</em></p>
77
{{/foreach}}
88

src/css/base/typography.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ h2 {
2323
font-weight: 700;
2424
line-height: normal;
2525
margin-bottom: 16px;
26-
text-transform: uppercase;
2726
}
2827

2928
h3 {

src/css/pages/post.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@
3939
margin-bottom: 0.5em;
4040
}
4141

42+
.post__list__item {
43+
color: var(--red);
44+
font-size: 1.5rem;
45+
font-weight: 700;
46+
line-height: 2rem;
47+
}
48+
4249
/* tocbot stuff */
4350
.gh-toc > .toc-list {
4451
position: relative;

0 commit comments

Comments
 (0)