From 34c852fe15982fc727df504be06a771d6cd7e108 Mon Sep 17 00:00:00 2001 From: rektpwner Date: Wed, 16 Oct 2024 01:57:43 +0200 Subject: [PATCH] fix: customize the default theme, override text-align to avoid long indentations --- assets/scss/custom.scss | 3 +++ layouts/partials/head.html | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 assets/scss/custom.scss create mode 100644 layouts/partials/head.html diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss new file mode 100644 index 0000000..4356c24 --- /dev/null +++ b/assets/scss/custom.scss @@ -0,0 +1,3 @@ +.post-content { + text-align: left; +} diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..a030248 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,2 @@ +{{ $customCSS := resources.Get "scss/custom.scss" | resources.ToCSS }} +