set image width to 100%, which fixes image wider as screen

This commit is contained in:
jonasled 2021-03-09 23:00:00 +01:00
parent ea7eafea2c
commit 67440174b0

View file

@ -13,8 +13,8 @@
background-color: rgba(0, 0, 0, 0.5);
.dialogContent {
height: 80%;
width: 80%;
max-height: 80%;
max-width: 80%;
background-color: white;
border: 10px solid rgb(86, 86, 86);
border-radius: 10px;
@ -31,6 +31,8 @@
width: auto;
img {
display: block;
width: 100%;
height: 100%;
}
}
}