mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-25 07:15:19 +00:00
29 lines
794 B
CSS
29 lines
794 B
CSS
[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);
|
|
}
|
|
}
|