mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-10 03:09:44 +00:00
25 lines
434 B
SCSS
25 lines
434 B
SCSS
|
// ==============================
|
||
|
// Post
|
||
|
// ==============================
|
||
|
|
||
|
.posts {
|
||
|
margin-bottom: $post-list-margin-bottom;
|
||
|
border-bottom: $post-border;
|
||
|
}
|
||
|
|
||
|
.post {
|
||
|
padding: $post-padding;
|
||
|
|
||
|
& + .post {
|
||
|
border-top: $post-border;
|
||
|
}
|
||
|
|
||
|
@import '_post/header';
|
||
|
@import '_post/toc';
|
||
|
@import '_post/content';
|
||
|
@import '_post/copyright';
|
||
|
@import '_post/reward';
|
||
|
@import '_post/footer';
|
||
|
@import '_post/outdated';
|
||
|
}
|