index.module.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. color: #101828;
  16. font-weight: 600;
  17. font-size: 18px;
  18. line-height: 28px;
  19. }
  20. .previewHeader .fileName {
  21. display: flex;
  22. align-items: center;
  23. font-weight: 400;
  24. font-size: 12px;
  25. line-height: 18px;
  26. color: #1D2939;
  27. }
  28. .previewHeader .filetype {
  29. color: #667085;
  30. }
  31. .previewContent {
  32. @apply overflow-y-auto grow;
  33. padding: 20px 32px;
  34. font-weight: 400;
  35. font-size: 16px;
  36. line-height: 24px;
  37. color: #344054;
  38. }
  39. .previewContent .loading {
  40. width: 100%;
  41. height: 180px;
  42. background: #f9fafb center no-repeat url(../assets/Loading.svg);
  43. background-size: contain;
  44. }
  45. .fileContent {
  46. white-space: pre-line;
  47. }