Fix iframe bug
Images in iframes were more than 100% wide on small screens
This commit is contained in:
@@ -30,7 +30,7 @@ img {
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
img {
|
||||
width: 100%;
|
||||
width: calc(100% - 15px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
html, body {
|
||||
font-family: 'Roboto';
|
||||
background: transparent;
|
||||
}
|
||||
img {
|
||||
width: 70%;
|
||||
box-shadow: 3px 3px 6px 2px rgba(10,10,10,0.5);
|
||||
margin: 10px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
/* revert changes made by Bootstrap */
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
h1, h2, h3, .h1, .h2, .h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user