Skip to content

Commit

Permalink
Update media query from min-width to max-width
Browse files Browse the repository at this point in the history
This commit updates the CSS media query screen size from a minimum width of 768px to a maximum width of 768px. This change improves the responsive design for smaller devices.
  • Loading branch information
MatejMa2ur committed May 14, 2024
1 parent 91e39ac commit 52104d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ body {
margin-top: -125px;
}

@media only screen and (min-width: 768px) {
@media only screen and (max-width: 768px) {
.user-image {
width: 180px;
margin-top: -90px;
Expand Down

0 comments on commit 52104d6

Please sign in to comment.