Merge branch 'feature/loginPage' into 'dev'

Feature/login page

See merge request kluppsoftware/smart-energia-web!43
This commit is contained in:
José Corte 2022-05-13 15:51:39 +00:00
commit 3a04abe15f
3 changed files with 10 additions and 13 deletions

View File

@ -82,11 +82,9 @@ export default function Home() {
<legend className="text">Ou</legend> <legend className="text">Ou</legend>
</fieldset> </fieldset>
<p>+55(41) 3012-5900<br/>www.energiasmart.com.br</p> <p><a href='tel:+55(41) 3012-5900' >+55(41) 3012-5900</a><br/><a href='https://www.energiasmart.com.br' >www.energiasmart.com.br</a></p>
</LoginContainer> </LoginContainer>
</LoginView> </LoginView>
) )
} }

View File

@ -5,6 +5,7 @@ export const GlobalStyle = createGlobalStyle`
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family: 'Poppins'; font-family: 'Poppins';
background-color: #f9f9f9;
} }
main { main {

View File

@ -10,20 +10,17 @@ export const LoginView = styled.main<{auth: string}>`
width: 100%; width: 100%;
height: 100vh; height: 100vh;
background-color: #f9f9f9;
padding: 0; padding: 0;
margin: 0;
@media (max-width: 1196px) { @media (max-width: 1196px) {
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: flex-start;
align-items: center; align-items: center;
height: 100%; height: 100%;
padding: 20px; padding: 100px;
} }
`; `;
@ -66,10 +63,11 @@ export const LoginContainer = styled.section`
} }
.line .text { .line .text {
padding: 19px 56px; padding: 19px 56px;
color: #ABB3BB; color: #ABB3BB;
font-size: 14px; font-size: 14px;
} }
span{ span{
display: flex; display: flex;
align-self: flex-end; align-self: flex-end;
@ -77,6 +75,7 @@ export const LoginContainer = styled.section`
justify-content: flex-end; justify-content: flex-end;
cursor: pointer; cursor: pointer;
} }
p{ p{
color: #8B8B8B; color: #8B8B8B;
text-align: center; text-align: center;
@ -91,5 +90,4 @@ export const LoginContainer = styled.section`
width: 100%; width: 100%;
margin: 0; margin: 0;
} }
`; `;