index.module.css 1019 B

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