index.module.css 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .filePreview {
  2. @apply flex flex-col border-l border-gray-200 shrink-0;
  3. width: 528px;
  4. background-color: #fcfcfd;
  5. }
  6. .previewHeader {
  7. @apply border-b border-gray-200 shrink-0;
  8. margin: 42px 32px 0;
  9. padding-bottom: 16px;
  10. }
  11. .previewHeader .title {
  12. color: #101828;
  13. font-weight: 600;
  14. font-size: 18px;
  15. line-height: 28px;
  16. }
  17. .previewHeader .fileName {
  18. font-weight: 400;
  19. font-size: 12px;
  20. line-height: 18px;
  21. color: #1D2939;
  22. }
  23. .previewHeader .filetype {
  24. color: #667085;
  25. }
  26. .previewContent {
  27. @apply overflow-y-auto grow;
  28. padding: 20px 32px;
  29. font-weight: 400;
  30. font-size: 16px;
  31. line-height: 24px;
  32. color: #344054;
  33. }
  34. .previewContent .loading {
  35. width: 100%;
  36. height: 180px;
  37. background: #f9fafb center no-repeat url(../assets/Loading.svg);
  38. background-size: contain;
  39. }
  40. .fileContent {
  41. white-space: pre-line;
  42. }