26 lines
549 B
CSS
26 lines
549 B
CSS
[data-component="diff-changes"] {
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
|
|
[data-slot="diff-changes-additions"],
|
|
[data-slot="diff-changes-deletions"] {
|
|
font-family: var(--v2-font-family-sans);
|
|
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(--state-fg-success);
|
|
}
|
|
|
|
[data-slot="diff-changes-deletions"] {
|
|
color: var(--state-fg-danger);
|
|
}
|
|
}
|