From 046ec3975c2d8ab82775ca58f1b7dc7dc4611c55 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 27 Aug 2023 22:13:04 -0500 Subject: [PATCH] refactor(style): improve article width on small screens --- assets/style/article.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/assets/style/article.css b/assets/style/article.css index e62f30b..e10bc20 100644 --- a/assets/style/article.css +++ b/assets/style/article.css @@ -1,9 +1,7 @@ /* Article Specific Styling Below */ article { display: flex; - max-width: min(700px, 100vw); - padding-left: 3px; - padding-left: 3px; + max-width: min(700px, 90vw); align-self: center; flex-direction: column; }