From d7118b1ee05359df599df1bd6715ff1197ca1093 Mon Sep 17 00:00:00 2001 From: Sidharth R <122173059+hugo-sid@users.noreply.github.com> Date: Mon, 13 Mar 2023 18:44:19 +0530 Subject: [PATCH] chore: add padding to year on listpage --- assets/sass/_listpage.scss | 3 +++ assets/sass/main.scss | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 assets/sass/_listpage.scss diff --git a/assets/sass/_listpage.scss b/assets/sass/_listpage.scss new file mode 100644 index 00000000..f5724386 --- /dev/null +++ b/assets/sass/_listpage.scss @@ -0,0 +1,3 @@ +.list-page .post-year { + padding-bottom: .5rem; +} \ No newline at end of file diff --git a/assets/sass/main.scss b/assets/sass/main.scss index 3a48edeb..a0690cda 100644 --- a/assets/sass/main.scss +++ b/assets/sass/main.scss @@ -75,4 +75,5 @@ $on-widescreen: 1152px; @import "post"; @import "code"; @import "miscellaneous"; -@import "dark"; \ No newline at end of file +@import "dark"; +@import "listpage"; \ No newline at end of file