Skip to content

Commit

Permalink
style: fix margin tag
Browse files Browse the repository at this point in the history
  • Loading branch information
K4ST0R committed Sep 18, 2024
1 parent 13200ad commit 9c869f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Tag from "#/app/components/Tag";
function TagTransition({ metier, type }: { metier: Metier; type: MetierTransitionType }) {
return (
metier[type] && (
<Tag square variant="blue" style={{ padding: "0.375rem" }}>
<Tag square variant="blue" style={{ padding: "0.375rem", marginBottom: "0.5rem" }}>
<Typography variant="body3" style={{ fontWeight: 700 }}>
{METIER_TRANSITION[type].label.toUpperCase()}
</Typography>
Expand Down

0 comments on commit 9c869f7

Please sign in to comment.