Skip to content

Commit

Permalink
add min-height to logo header
Browse files Browse the repository at this point in the history
  • Loading branch information
waldohidalgo committed Jun 21, 2024
1 parent 13b01a2 commit 88cddcb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/Banner/Banner.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.banner__eslogan {
margin-left: 0.5rem;
margin-right: 0.5rem;

border-radius: 25px;
background-color: rgba(198, 134, 66, 0.8);
display: flex;
Expand Down
6 changes: 4 additions & 2 deletions src/components/Banner/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ const Section = styled.section`
width: 100%;
background-repeat: no-repeat;
background-position-x: center;
background-attachment: fixed;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
@media screen and (min-width: 550px) {
background-attachment: fixed;
}
`;

const ContenedorThumnails = styled.div`
Expand Down
1 change: 1 addition & 0 deletions src/components/header/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const HeaderContenedor = styled.header`
const HeaderLogo = styled.img`
width: 100%;
max-width: 499px;
min-height: 100px;
`;

const Header = () => {
Expand Down

0 comments on commit 88cddcb

Please sign in to comment.