mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-28 13:52:30 +00: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
1 changed files with 4 additions and 0 deletions
|
@ -46,5 +46,9 @@
|
|||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.page-content a > img {
|
||||
max-width: none;
|
||||
}
|
||||
</style>
|
||||
@endif
|
Loading…
Add table
Add a link
Reference in a new issue