removes unnecessary style tag from image
This commit is contained in:
parent
c44100c47a
commit
c2b750623c
2 changed files with 10 additions and 3 deletions
|
@ -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>
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue