sandanat / vue-pdf-app

VUEjs v2 PDF viewer based on Mozilla's PDFJS
MIT License
225 stars 103 forks source link

Compatibility with bootstrap #98

Open tlyau62 opened 2 years ago

tlyau62 commented 2 years ago

When apply with bootstrap 4.6, there are some mispositions on the viewer, which can also be tested on the demo site.

Thus, I have created a workaround scss for such issue. Not sure if it can be merge to the master.

.pdf-app {
  #thumbnailView {
    width: 100%;

    .thumbnail .thumbnailImage {
      width: 100% !important;
      height: 100% !important;
    }

    .convasWrapper {
      width: 100% !important;
      height: 100% !important;
    }
  }

  .pdfViewer .page > * {
    width: 100% !important;
    height: 100% !important;
  }
}