From e9a44360ab179fc1966f27c45defe666e82613db Mon Sep 17 00:00:00 2001
From: Lucas Schoenfelder <les17@inf.ufpr.br>
Date: Thu, 19 Nov 2020 11:45:49 -0300
Subject: [PATCH] fixed css on mobile

---
 src/Components/LoginContainerFunction.js  | 6 ++++--
 src/Components/SignUpContainerFunction.js | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/Components/LoginContainerFunction.js b/src/Components/LoginContainerFunction.js
index 31aa61be..c4c38394 100644
--- a/src/Components/LoginContainerFunction.js
+++ b/src/Components/LoginContainerFunction.js
@@ -193,6 +193,8 @@ export default function LoginContainer (props) {
     @media ${device.mobileM} {
     width : 100%;
     height : 100%;
+    min-width : unset !important;
+
     }
     `
 
@@ -262,7 +264,7 @@ export const RightSideStrikedH3 = styled.div`
     vertical-align :  middle;
     font-weight : 500;
     margin-right : 5px;
-    width : 45%;
+    width : 44%;
     `
 
     export const LeftSideStrikedH3 = styled.div`
@@ -271,7 +273,7 @@ export const RightSideStrikedH3 = styled.div`
     vertical-align :  middle;
     font-weight : 500;
     margin-left : 5px;
-    width : 45%;
+    width : 44%;
     `
 
     export const H3Div = styled.div`
diff --git a/src/Components/SignUpContainerFunction.js b/src/Components/SignUpContainerFunction.js
index 44e3df95..d4304eff 100644
--- a/src/Components/SignUpContainerFunction.js
+++ b/src/Components/SignUpContainerFunction.js
@@ -229,6 +229,8 @@ const ContainerStyled = styled.div`
     @media ${device.mobileM} {
         width : 100%;
         height : 100%;
+        min-width : unset !important;
+
     }
 `
 
@@ -277,7 +279,7 @@ const RightSideStrikedH3 = styled.div`
     vertical-align :  middle;
     font-weight : 500;
     margin-right : 5px;
-    width : 45%;
+    width : 44%;
 `
 
 const LeftSideStrikedH3 = styled.div`
@@ -286,7 +288,7 @@ const LeftSideStrikedH3 = styled.div`
     vertical-align :  middle;
     font-weight : 500;
     margin-left : 5px;
-    width : 45%;
+    width : 44%;
 `
 
 const StyledAnchor = styled.a`
-- 
GitLab