Merge pull request #64 from StarCitizenTools/dev

Merged PDFHandler fixes to master
This commit is contained in:
alistair3149 2020-01-07 12:49:28 -05:00 committed by GitHub
commit 9a09a2aa61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 0 deletions

View file

@ -511,6 +511,10 @@ a {
overflow-wrap: break-word; overflow-wrap: break-word;
} }
p:first-of-type {
margin-top: 0;
}
h2 { h2 {
font-size: @content-h2-size; font-size: @content-h2-size;
} }

View file

@ -73,6 +73,49 @@
} }
} }
.multipageimage {
display: flex;
justify-content: center;
overflow: visible;
.fullImageLink {
margin: 0 !important;
}
> a > img {
margin: 0;
}
tr {
display: flex;
flex-direction: column;
}
.multipageimagenavbox {
margin-top: 0.8rem;
display: flex;
align-items: center;
justify-content: space-between;
.thumb {
margin: 0 !important;
&:first-of-type {
order: -1;
}
.lazy {
filter: none !important;
}
}
hr,
br {
display: none;
}
}
}
@media only screen and ( max-width: @screen2 ) { @media only screen and ( max-width: @screen2 ) {
.fullImageLink { .fullImageLink {
/* stylelint-disable unit-no-unknown */ /* stylelint-disable unit-no-unknown */