Skip to content

Commit

Permalink
Update media query for user-image in CSS
Browse files Browse the repository at this point in the history
The media query for the user-image class in the CSS file has been adjusted. Instead of applying the styling for screens with a maximum width of 768px, it now applies only to screens with a minimum width of 768px.
  • Loading branch information
MatejMa2ur committed May 14, 2024
1 parent f8cfb5d commit 91e39ac
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 (max-width: 768px) {
@media only screen and (min-width: 768px) {
.user-image {
width: 180px;
margin-top: -90px;
Expand Down

0 comments on commit 91e39ac

Please sign in to comment.