Skip to content

Commit

Permalink
Merge pull request #1408 from andrew-bierman/fix-pack-sort-chip-size
Browse files Browse the repository at this point in the history
Fix pack sort chip size on profile
  • Loading branch information
taronaleksanian authored Jan 7, 2025
2 parents c1ea72b + 67825d2 commit ad52dbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/app/components/FilterBadge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ const FilterBadge = ({
}))}
menuName={selectedValue}
trigger={
<Chip rounded size="small" key={selectedValue}>
<Chip rounded size="$4" key={selectedValue}>
<Chip.Text>{selectedValue}</Chip.Text>
<Chip.Icon>
<ChevronDown size={14} />
<ChevronDown size={20} />
</Chip.Icon>
</Chip>
}
Expand Down
2 changes: 1 addition & 1 deletion packages/app/components/GearList/GearList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const GearList = ({ isViewOnlyMode }: { isViewOnlyMode: boolean }) => {
)}
{currentPack ? (
<>
<LayoutCard style={{ padding: 5 }}>
<LayoutCard style={{ padding: 3 }}>
<PackSummary
currentPack={currentPack}
setWeightUnit={setWeightUnit}
Expand Down

0 comments on commit ad52dbf

Please sign in to comment.