Skip to content

Commit

Permalink
fix responsive #2
Browse files Browse the repository at this point in the history
  • Loading branch information
AsteroidusTv committed Oct 12, 2024
1 parent 4ba14ff commit 92756c8
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions styles/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@

@media screen and (max-width: 500px) {
.about {
padding-top: 120px;
display: flex;
justify-content: center;
align-items: center;
}

Expand All @@ -70,16 +70,35 @@
}

.about-text {
font-size: 15px;
font-size: 17px;
margin-bottom: 0px;
}

.about-text-content {
margin-top: 80px;
border-radius: var(--border-radius);
border: 5px solid var(--primary-color);
padding: 10px;
padding: 15px;
display: flex;
flex-direction: column;
gap: 10px;
}
}
}

@media screen and (max-width: 450px) {
.about-text {
font-size: 16px;
}
}

@media screen and (max-width: 400px) {
.about-text {
font-size: 15px;
}
}

@media screen and (max-width: 350px) {
.about-text {
font-size: 13.5px;
}
}

0 comments on commit 92756c8

Please sign in to comment.