From d145dc2795057a9ba173ccf7639d740989de779d Mon Sep 17 00:00:00 2001 From: Gosha Tcherednitchenko Date: Thu, 10 Oct 2024 08:01:35 +0100 Subject: [PATCH] fix: mobile styles --- resources/public/css/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/resources/public/css/style.css b/resources/public/css/style.css index 1787e6c..7419ee7 100644 --- a/resources/public/css/style.css +++ b/resources/public/css/style.css @@ -107,3 +107,23 @@ footer { max-width: 400px; } } + +@media (max-width: 600px) { + .signup form { + flex-direction: column; + } + + .signup input[type="email"], + .signup input[type="submit"] { + flex: 1; + width: 100%; + margin-left: 0; + margin-bottom: 0.5rem; + } + + footer { + flex-direction: column; + gap: 0; + padding-bottom: 4rem; + } +}