Skip to content

Commit

Permalink
(#5) Adicionando estilos segundo NavBar
Browse files Browse the repository at this point in the history
  • Loading branch information
ServidioEC committed Sep 13, 2021
1 parent 069e803 commit 70dc5bb
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions frontend/src/components/NavBar/SecondNavBar/styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import styled from 'styled-components';

export const SecondNavBarContainer = styled.div`
display: flex;
width: 100%;
height: 7rem;
align-items: center;
justify-content: space-between;
background-color: ${props => props.theme.white};
box-shadow: 0.4rem 0 4rem ${props => `${props.theme.black}25`};
section {
display: flex;
align-items: center;
svg {
width: 1.5rem;
height: 1.5rem;
color: ${props => props.theme.black};
margin: 0 0.6rem 0 3rem;
}
span {
font-size: 1.5rem;
}
}
`;

export const SecondNameContainer = styled.div`
display: flex;
border: 2px solid ${props => props.theme.gray};
border-radius: 15px;
padding: 0.6rem 1.5rem;
margin-right: 2.5rem;
span {
font-size: 1.5rem;
font-weight: 500;
}
`;

0 comments on commit 70dc5bb

Please sign in to comment.