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 style = "text-align: center;">
|
||||
<div class = "profileImage orangeBorder" style = "margin: 0 auto;">
|
||||
<img src = "images/Profile3.png" alt = "me" style = "border-radius: 2px; object-fit: cover; width: 100%; height:100%">
|
||||
<div class = "profileImageContainer orangeBorder" style = "margin: 0 auto;">
|
||||
<img src = "images/Profile3.png" alt = "me" class = "profileImage">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -23,12 +23,19 @@
|
|||
margin-right: 10vw;
|
||||
}
|
||||
|
||||
.profileImage{
|
||||
.profileImageContainer{
|
||||
width: 30vw;
|
||||
height: 30vw;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.profileImage{
|
||||
border-radius: 2px;
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
height:100%
|
||||
}
|
||||
|
||||
#galleryHeader{
|
||||
margin-left: 30vw;
|
||||
margin-right: 30vw;
|
||||
|
|
Loading…
Add table
Reference in a new issue