Skip to content

Commit

Permalink
style: labels should always use text-sm (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR authored Oct 17, 2024
1 parent 0284252 commit 98740f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/ui/src/components/ProposalLabels.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ watch(
<UiProposalLabel
:label="label.name"
:color="label.color"
class="text-sm mb-1 max-w-[160px]"
class="mb-1 max-w-[160px]"
/>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/src/components/Ui/ProposalLabel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function checkColorProximity(color: string): {

<template>
<div
class="px-2 py-[6px] rounded-full leading-3 whitespace-nowrap truncate w-fit max-w-[220px] shrink-0"
class="px-2 py-[6px] rounded-full leading-3 whitespace-nowrap truncate w-fit max-w-[220px] shrink-0 text-sm"
:class="{
border: colorProperties.showBorder
}"
Expand Down

0 comments on commit 98740f8

Please sign in to comment.