From dc054d91e03fab29968c8b3a2b4987d4cc0924df Mon Sep 17 00:00:00 2001 From: Ryan Taylor <35360143+r-j-taylor@users.noreply.github.com> Date: Sat, 2 Dec 2023 06:49:06 +0000 Subject: [PATCH] Update styling to fix margins on mobile (#2341) Signed-off-by: Jonah Aragon Signed-off-by: Daniel Gray --- theme/assets/stylesheets/home.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/theme/assets/stylesheets/home.css b/theme/assets/stylesheets/home.css index 6922751a..5ebf0ceb 100644 --- a/theme/assets/stylesheets/home.css +++ b/theme/assets/stylesheets/home.css @@ -100,6 +100,12 @@ article.md-content__inner { margin: auto; padding-bottom: 3rem; } +@media screen and (max-width: 65rem) { + article.md-content__inner { + margin-right: 0.8rem; + margin-left: 0.8rem; + } +} article.md-content__inner > * { max-width: 38rem; }