mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-19 18:22:45 +08:00
Fixed linked images being micro on pdf export
Was caused by max-width: 100% causing confusion when images were inside an anchor. This change resets that property on PDF exports allowing full width images to be shown as so without affecting smaller sizes. Fixes #3120
This commit is contained in:
parent
b438e0187c
commit
65830b428c
|
@ -46,5 +46,9 @@
|
||||||
clear: both;
|
clear: both;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.page-content a > img {
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
@endif
|
@endif
|
Loading…
Reference in New Issue
Block a user