diff --git a/client/src/components/Form.js b/client/src/components/Form.js index 7ffc6dc..0240768 100644 --- a/client/src/components/Form.js +++ b/client/src/components/Form.js @@ -39,7 +39,7 @@ const Form = ({ socket }) => { return (
); }; diff --git a/client/src/components/styles/Form.module.css b/client/src/components/styles/Form.module.css index 623beb5..abdac67 100644 --- a/client/src/components/styles/Form.module.css +++ b/client/src/components/styles/Form.module.css @@ -7,7 +7,8 @@ Form { align-items: flex-end; justify-content: center; } - + + @media screen and (max-width: 550px) { Form { width: 100%; @@ -18,3 +19,16 @@ Form { justify-content: center; } } + + + @media screen and (max-width: 750px) { + Form { + flex-direction: column; + align-items: flex-start; + } + + Form input,Form div { + width: 100%; + display: block; + } + }