src/theme/BlogPostItem/styles.module.scss (27 lines of code) (raw):
.blogList {
border: 1px solid var(--blog-border-color);
position: relative;
&:hover {
border: 1px solid var(--active-color);
}
}
.blogDetail {
.tags {
display: flex;
align-items: center;
margin-top: 35px;
.text {
margin-right: 15px;
color: var(--sub-text-color-2);
}
}
}
article[itemProp="blogPost"] {
border-radius: 6px;
// last column no margin
&:nth-last-of-type(1) {
margin-bottom: 0;
}
&:nth-last-of-type(2) {
margin-bottom: 0;
}
}