From e66aa3bd4d822c2cd0a98c6a96cc722291b2d6ff Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Sun, 29 Dec 2024 17:07:27 -0700 Subject: [PATCH] fix: minor refinement to horizontal padding --- config.toml | 3 ++- sass/custom.scss | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 sass/custom.scss diff --git a/config.toml b/config.toml index 2c357c2..75f7da9 100644 --- a/config.toml +++ b/config.toml @@ -41,5 +41,6 @@ repo_url = "https://github.com/nrdxp/nrd.sh/tree/main/content/" favicon = "/icon/favicon.png" stylesheets = [ "fira.css", - "colors.css" + "colors.css", + "custom.css" ] diff --git a/sass/custom.scss b/sass/custom.scss new file mode 100644 index 0000000..8c4df32 --- /dev/null +++ b/sass/custom.scss @@ -0,0 +1,6 @@ +.content { + max-width: 1000px; + margin: 0 auto; + padding: 0 0.618em; + word-wrap: break-word; +}