removes unnecessary style tag from image

This commit is contained in:
Nye Evans 2021-09-21 22:37:12 +01:00
parent c44100c47a
commit c2b750623c
2 changed files with 10 additions and 3 deletions

View file

@ -28,8 +28,8 @@
</div> </div>
<div style = "text-align: center;"> <div style = "text-align: center;">
<div class = "profileImage orangeBorder" style = "margin: 0 auto;"> <div class = "profileImageContainer orangeBorder" style = "margin: 0 auto;">
<img src = "images/Profile3.png" alt = "me" style = "border-radius: 2px; object-fit: cover; width: 100%; height:100%"> <img src = "images/Profile3.png" alt = "me" class = "profileImage">
</div> </div>
</div> </div>

View file

@ -23,12 +23,19 @@
margin-right: 10vw; margin-right: 10vw;
} }
.profileImage{ .profileImageContainer{
width: 30vw; width: 30vw;
height: 30vw; height: 30vw;
text-align: center; text-align: center;
} }
.profileImage{
border-radius: 2px;
object-fit: cover;
width: 100%;
height:100%
}
#galleryHeader{ #galleryHeader{
margin-left: 30vw; margin-left: 30vw;
margin-right: 30vw; margin-right: 30vw;