wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.filePreview {
    @apply flex flex-col border-l border-components-panel-border shrink-0 bg-background-default-lighter;
    width: 100%;
  }
 
  .previewHeader {
    @apply border-b border-divider-subtle shrink-0;
    margin: 42px 32px 0;
    padding-bottom: 16px;
  }
 
  .previewHeader .title {
    @apply flex justify-between items-center text-text-primary;
  }
 
  .previewHeader .fileName {
    @apply text-text-tertiary;
  }
 
  .previewHeader .filetype {
    @apply text-text-tertiary;
  }
 
  .previewContent {
    @apply overflow-y-auto grow text-text-secondary;
    padding: 20px 32px;
  }
 
  .previewContent .loading {
    width: 100%;
    height: 180px;
    background: transparent center no-repeat url(../assets/Loading.svg);
    background-size: contain;
  }
 
  .fileContent {
    white-space: pre-line;
    word-break: break-all;
  }