This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flex-site.git


The following commit(s) were added to refs/heads/main by this push:
     new a111a39a7 css: fix width on mobile screens by using auto instead of 
100%
a111a39a7 is described below

commit a111a39a7a4ea4fa816e38c67166bb809047ac59
Author: Josh Tynjala <joshtynj...@bowlerhat.dev>
AuthorDate: Wed Jun 25 09:27:21 2025 -0700

    css: fix width on mobile screens by using auto instead of 100%
---
 content/css/style.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/css/style.css b/content/css/style.css
index f29ace86b..f48987222 100644
--- a/content/css/style.css
+++ b/content/css/style.css
@@ -1056,12 +1056,12 @@ a.sign-up:hover {
 @media only screen and (max-width: 767px) {
 
     #footer {
-        width: 100%;
+        width: auto;
         margin: 0 auto;
     }
 
     #wrapper {
-        width: 100%;
+        width: auto;
     }
 
 

Reply via email to