pdf-viewer.scss 874 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .pdf-viewer {
  2. canvas {
  3. border: 1px solid black;
  4. direction: ltr;
  5. width: 100%;
  6. height: auto;
  7. display: none;
  8. }
  9. .paginator {
  10. display: flex!important;
  11. width: 100% !important;
  12. text-align: center;
  13. margin-bottom: 0.2rem !important;
  14. justify-content: space-between;
  15. .page-number-indicator {
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. }
  20. .loading-wrapper {
  21. display: none;
  22. justify-content: center;
  23. align-items: center;
  24. width: 100%;
  25. height: 350px;
  26. }
  27. .loading {
  28. display: inline-block;
  29. width: 50px;
  30. height: 50px;
  31. border: 3px solid #d2d0d0;;
  32. border-radius: 50%;
  33. border-top-color: #383838;
  34. animation: spin 1s ease-in-out infinite;
  35. -webkit-animation: spin 1s ease-in-out infinite;
  36. }
  37. @keyframes spin {
  38. to { -webkit-transform: rotate(360deg); }
  39. }
  40. }