From 734d883d3cb705f3128aea6c00dd339d0af15a07 Mon Sep 17 00:00:00 2001 From: steven-y-e Date: Tue, 22 Dec 2020 09:56:24 -0500 Subject: [PATCH] feat(css): breakpoints at 850px and 475px mobile responsiveness --- public/index.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/public/index.php b/public/index.php index 484dbbf..f9fef63 100644 --- a/public/index.php +++ b/public/index.php @@ -61,6 +61,18 @@ margin: auto; text-align: left; } + + /* breakpoints at 850px and 475px */ + @media screen and (max-width: 850px) { + .luggage { + width: 50%; + } + } + @media screen and (max-width: 475px) { + .luggage { + width: 100%; + } + }