Skip to content

Commit

Permalink
Fix about responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
AsteroidusTv committed Oct 12, 2024
1 parent a96908c commit ef867d2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions styles/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,19 @@
}

.about-image {
width: 100%;
height: auto;
transform: translateY(30px);
height: calc(100vh - 240px);
border-radius: var(--border-radius);
box-shadow: 10px 10px 0px 0px var(--primary-color);
}

@media screen and (max-width: 1500px) {
.about-image {
height: auto;
max-width: 90%;
}
}

@media screen and (max-width: 990px) {
.about-image-content {
display: none;
Expand Down

0 comments on commit ef867d2

Please sign in to comment.