Skip to content

Commit

Permalink
Merge pull request #12 from Wesleyhmendes/atualizar-portifolio
Browse files Browse the repository at this point in the history
Fix divisor
  • Loading branch information
Wesleyhmendes authored Feb 8, 2024
2 parents fe8daa5 + 6bb2fc4 commit 03ac028
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions src/pages/HomePage.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@ export const Divisor = styled.hr`
margin-top: 17%;
}
@media (min-width: 1700px) {
margin-top: 15%;
}
`;

export const Divisor2 = styled.hr`
border-top: 2px solid #BBBBBB;
margin: 0 auto;
margin-top: 12%;
width: 85%;
@media (min-width: 1200px) {
margin-top: 10%;
}
@media (min-width: 1700px) {
margin-top: 8%;
}
`;

export const DivisorFooter = styled.hr`
Expand Down
4 changes: 2 additions & 2 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Presentation from '../components/Presentation/Presentation';
import Technologies from '../components/Technologies/Technologies';
import Projects from '../components/Projects/Projects';
import Footer from '../components/Footer/Footer';
import { Divisor, DivisorFooter } from './HomePage.styles';
import { Divisor, Divisor2, DivisorFooter } from './HomePage.styles';

function HomePage() {
return (
Expand All @@ -12,7 +12,7 @@ function HomePage() {
<Presentation />
<Divisor />
<Technologies />
<Divisor />
<Divisor2 />
<Projects />
<DivisorFooter />
<Footer />
Expand Down

0 comments on commit 03ac028

Please sign in to comment.