fixed long images not scrolling
This commit is contained in:
parent
208fa70c52
commit
b5931a8538
1 changed files with 6 additions and 5 deletions
|
@ -140,20 +140,21 @@ section > footer {
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 100% !important;
|
max-width: 100% !important;
|
||||||
height: auto;
|
}
|
||||||
|
|
||||||
|
#full > article pre {
|
||||||
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (width: 320px) {
|
@media screen and (width: 320px) {
|
||||||
#full > article * , #full > article pre {
|
#full > article > * {
|
||||||
max-width: 300px !important;
|
max-width: 300px !important;
|
||||||
overflow: auto;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (width: 480px) {
|
@media screen and (width: 480px) {
|
||||||
#full > article * {
|
#full > article > * {
|
||||||
max-width: 460px !important;
|
max-width: 460px !important;
|
||||||
overflow: auto;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue