alexdaniels.me/assets/styles/scss/front/_lists.scss

24 lines
455 B
SCSS
Raw Normal View History

2026-06-03 17:18:50 -07:00
@use '../shared/colors';
2026-06-10 14:00:25 -07:00
.posts {
2026-06-03 17:18:50 -07:00
.list {
ul {
list-style: none;
padding: 0;
li {
padding: 1rem 0;
a {
color: colors.$primaryWhite;
text-decoration: none;
display: block;
.post-title {
margin: 0;
}
}
}
}
}
}