From 50009410d0f5ef6f63225b31a1e71f81dd0ffa37 Mon Sep 17 00:00:00 2001 From: steven-y-e Date: Thu, 16 Sep 2021 09:30:20 -0400 Subject: [PATCH] feat(theme): custom css (finally lol) for now, just make images in posts fit to width of column instead of overflowing --- blog/themes/mineral/layouts/partials/head.html | 1 + blog/themes/mineral/static/css/mineral.css | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 blog/themes/mineral/static/css/mineral.css diff --git a/blog/themes/mineral/layouts/partials/head.html b/blog/themes/mineral/layouts/partials/head.html index 30aa582..015b125 100644 --- a/blog/themes/mineral/layouts/partials/head.html +++ b/blog/themes/mineral/layouts/partials/head.html @@ -12,6 +12,7 @@ + diff --git a/blog/themes/mineral/static/css/mineral.css b/blog/themes/mineral/static/css/mineral.css new file mode 100644 index 0000000..68a7e1a --- /dev/null +++ b/blog/themes/mineral/static/css/mineral.css @@ -0,0 +1,3 @@ +article p img { + width: 100%; +} \ No newline at end of file