styles.css 938 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #better-export-pdf {
  2. display: flex;
  3. flex-direction: row;
  4. height: 75vh;
  5. }
  6. #better-export-pdf .pdf-preview {
  7. flex: auto;
  8. position: relative;
  9. display: flex;
  10. flex-direction: column;
  11. overflow-x: hidden;
  12. overflow-y: scroll;
  13. align-content: flex-start;
  14. }
  15. #better-export-pdf .pdf-preview .webview-wrapper {
  16. position: relative;
  17. height: 100%;
  18. width: 100%;
  19. }
  20. #better-export-pdf .pdf-preview .print-size {
  21. position: absolute;
  22. right: 8px;
  23. top: 8px;
  24. z-index: 99;
  25. font-size: 0.6rem;
  26. white-space: pre-wrap;
  27. text-align: right;
  28. visibility: hidden;
  29. }
  30. #better-export-pdf .pdf-preview > div {
  31. flex: 1;
  32. height: 100%;
  33. width: 100%;
  34. }
  35. #better-export-pdf .pdf-preview .filename {
  36. font-size: 0.75rem;
  37. color: var(--color-base-60);
  38. }
  39. #better-export-pdf .pdf-preview .filename:not(:first-child) {
  40. padding-top: calc(var(--p-spacing));
  41. }
  42. #better-export-pdf webview {
  43. flex: 1;
  44. height: 100%;
  45. width: 100%;
  46. }