-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from matheus1994santos/Main
V0.3 Migrando para o Styled Components
- Loading branch information
Showing
12 changed files
with
346 additions
and
61 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ function App() { | |
<div> | ||
<Header/> | ||
<Main/> | ||
<Footer/> | ||
{/* <Footer/> */} | ||
</div> | ||
); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import styled from "styled-components"; | ||
|
||
export const HeaderContainer = styled.header` | ||
display: flex; | ||
justify-content: space-around; | ||
align-items: center; | ||
background-color: #00006D; | ||
border: 1px solid rgba(255, 192, 203, 0.422); | ||
border-radius: 18px; | ||
box-shadow: -2px 2px 5px rgba(255, 192, 203, 0.622); | ||
margin-bottom: 8px; | ||
& img{ | ||
width: 150px; | ||
height: 80px; | ||
} | ||
& nav{ | ||
display: flex; | ||
flex-direction: row; | ||
gap: 8px; | ||
justify-content: space-around; | ||
background-color: none; | ||
& a{ | ||
font-size: 18px; | ||
cursor: pointer; | ||
color: white; | ||
background-color: none; | ||
:hover{ | ||
border-bottom: 1px solid white; | ||
} | ||
} | ||
} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.