Skip to content

Commit

Permalink
Ajustando footer
Browse files Browse the repository at this point in the history
Co-authored-by: Sayuck <[email protected]>
Co-authored-by: Pedrok99 <[email protected]>
  • Loading branch information
3 people committed Oct 14, 2021
1 parent 5c5e013 commit 67e7f67
Showing 1 changed file with 5 additions and 17 deletions.
22 changes: 5 additions & 17 deletions src/components/Footer/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export const Footer = styled.footer`
grid-column: 1/-1;
padding: 20px;
display: flex;
flex-direction: column;
background: ${theme.colors.white};
align-items: center;
justify-content: center;
justify-content: space-between;
flex-wrap: wrap;
@media (max-width: 600px) {
gap: calc(${theme.spacings.large} / 2);
Expand All @@ -24,10 +24,7 @@ export const container = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
/* border: 1px solid red; */
align-items: center;
text-align: center;
margin: 0 auto;
`;

export const Logo = styled.div`
Expand All @@ -36,7 +33,6 @@ export const Logo = styled.div`
display: inline-flexbox;
gap: 1rem;
align-items: center;
/* margin-right: ${theme.spacings.xlarge}; */
cursor: pointer;
color: ${theme.colors.primary};
text-shadow:
Expand All @@ -57,28 +53,20 @@ export const Logo = styled.div`
`;

export const Links = styled.div`
${({ theme }) => css`
display: flex;
/* flex-direction: column; */
align-items: center;
text-align: center;
/* border: 1px solid blue; */
gap: ${theme.spacings.large};
`}
display: flex;
align-items: center;
`;

export const CustomLink = styled.a`
${({ theme }) => css`
position: relative;
display: flex;
align-items: center;
gap: ${theme.spacings.small};
padding: 1rem;
color: black;
font-weight: ${theme.font.weight.light};
font-weight: ${theme.font.weight.medium};
font-size: ${theme.font.sizes.medium};
text-decoration: none;
text-shadow: 1px 1px 1px #333;
cursor: pointer;
${hoverAnimation({
strokeWidth: '2px',
Expand Down

0 comments on commit 67e7f67

Please sign in to comment.