style: increase branch labels contrast

This commit is contained in:
Pavel Laptev 2024-11-06 16:18:37 +01:00 committed by GitButler
parent beb2887762
commit d0d4a4cafe
3 changed files with 4 additions and 3 deletions

View File

@ -111,7 +111,7 @@
align-items: center; align-items: center;
gap: 2px; gap: 2px;
padding: 2px 4px 2px 6px; padding: 2px 4px 2px 6px;
color: var(--clr-text-2); color: var(--clr-text-1);
background-color: var(--clr-bg-1); background-color: var(--clr-bg-1);
border-radius: var(--radius-m); border-radius: var(--radius-m);
border: 1px solid var(--clr-border-2); border: 1px solid var(--clr-border-2);

View File

@ -18,7 +18,7 @@
</div> </div>
</Tooltip> </Tooltip>
<div class="series-name text-12 text-semibold" class:contrast={showCounterLabel} class:selected> <div class="series-name text-12 text-semibold contrast" class:selected>
<span class="truncate">{series[0]}</span> <span class="truncate">{series[0]}</span>
</div> </div>

View File

@ -24,6 +24,7 @@ export const DefaultStory: Story = {
'feature/add-password-reset', 'feature/add-password-reset',
'hotfix/correct-typo-in-readme' 'hotfix/correct-typo-in-readme'
], ],
showCounterLabel: true showCounterLabel: true,
selected: false
} }
}; };