opencode / packages /ui /src /v2 /components /diff-changes-v2.css
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
9697ede verified
Raw
History Blame Contribute Delete
553 Bytes
[data-component="diff-changes"] {
display: flex;
direction: ltr;
unicode-bidi: isolate;
gap: 8px;
justify-content: flex-end;
align-items: center;
[data-slot="diff-changes-additions"],
[data-slot="diff-changes-deletions"] {
font-size: 11px;
font-style: normal;
font-weight: 440;
line-height: 1;
letter-spacing: 0.05px;
text-align: right;
}
[data-slot="diff-changes-additions"] {
color: var(--v2-state-fg-success);
}
[data-slot="diff-changes-deletions"] {
color: var(--v2-state-fg-danger);
}
}