Skip to content

Commit f7cb637

Browse files
authored
fix: prevent list page content links from losing underlines (#351)
The overly broad `.list-posts a` selector was removing underlines from all links within list pages, including content links in the page description. This change makes the selector more specific to only target post title links, allowing regular content links to display with proper underline decoration.
1 parent c3c63f5 commit f7cb637

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/css/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ table td {
511511
.list-posts .post-title {
512512
margin: 18px 0 0 15px;
513513
}
514-
.list-posts a {
514+
.list-posts .post-title a {
515515
text-decoration: none;
516516
}
517517
.post-title .post-link,

0 commit comments

Comments
 (0)