Skip to content

Commit

Permalink
fix: Bigger fonts on computer screen (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-martinez authored Jul 7, 2024
1 parent 5c60597 commit fd8b0ad
Showing 1 changed file with 35 additions and 4 deletions.
39 changes: 35 additions & 4 deletions css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,6 @@ body>section:first-of-type {

text-align: center;

&>div>p {
font-size: 16px;
}

&>div>.text-bold {
font-size: 24px;
font-weight: bold;
Expand Down Expand Up @@ -166,4 +162,39 @@ body>section:nth-of-type(2) {
}
}
}
}

@media screen and (min-width: 1024px) {
p {
font-size: 1.25rem;
}

.button-primary {
font-size: 1rem;
}

body>nav>a>img {
width: 50px;
}

body>nav>div>label>img {
width: 25px;
}

body>section:first-of-type {
&>img {
width: 150px;
border-radius: 75px;
}

&>div>.text-bold {
font-size: 1.875rem;
}
}

body>section:nth-of-type(2) {
&>p {
font-size: 1.875rem;
}
}
}

0 comments on commit fd8b0ad

Please sign in to comment.