summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/diff-changes.css
blob: afca514740b2aad74064af5cfa5007bdb9b1784d (plain)
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
[data-component="diff-changes"] {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;

  [data-slot="additions"] {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-large);
    letter-spacing: var(--letter-spacing-normal);
    text-align: right;
    color: var(--text-diff-add-base);
  }

  [data-slot="deletions"] {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-large);
    letter-spacing: var(--letter-spacing-normal);
    text-align: right;
    color: var(--text-diff-delete-base);
  }
}