Fix iframe bug

Images in iframes were more than 100% wide on small screens
This commit is contained in:
Matthew Grove
2018-12-11 07:35:38 +00:00
parent 32a63811fa
commit 5df924af7c
2 changed files with 1 additions and 19 deletions

View File

@@ -30,7 +30,7 @@ img {
}
@media screen and (max-width: 600px) {
img {
width: 100%;
width: calc(100% - 15px);
}
}