Skip to content

Commit

Permalink
Merge pull request #129 from djnunez-aot/badge-touch-ups
Browse files Browse the repository at this point in the history
Clean up badge heights
  • Loading branch information
jadmsaadaot authored Oct 31, 2024
2 parents 89e546a + 34c51c5 commit 83111b0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion submit-web/src/components/PackageStatusChip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const statusStyles: Record<PackageStatus, StyleProps> = {
borderRadius: 1,
border: `2px solid ${BCDesignTokens.supportBorderColorSuccess}`,
background: BCDesignTokens.supportSurfaceColorSuccess,
height: "24px",
},
label: "Approved",
},
Expand All @@ -20,6 +21,7 @@ const statusStyles: Record<PackageStatus, StyleProps> = {
borderRadius: 1,
border: `1px solid ${BCDesignTokens.themeBlue100}`,
background: BCDesignTokens.themeBlue20,
height: "24px",
},
label: "In Review",
},
Expand All @@ -34,6 +36,7 @@ const statusStyles: Record<PackageStatus, StyleProps> = {
borderRadius: 1,
border: `1px solid ${BCDesignTokens.supportBorderColorInfo}`,
background: BCDesignTokens.themeBlue20,
height: "24px",
},
label: "Submitted",
},
Expand All @@ -42,6 +45,7 @@ const statusStyles: Record<PackageStatus, StyleProps> = {
borderRadius: 1,
border: `1px solid ${BCDesignTokens.supportBorderColorSuccess}`,
background: BCDesignTokens.supportSurfaceColorSuccess,
height: "24px",
},
label: "Completed",
},
Expand All @@ -61,7 +65,7 @@ const statusStyles: Record<PackageStatus, StyleProps> = {
background: EAOColors.DecisionLight,
height: "24px",
},
label: "New Submission",
label: "New",
},
};

Expand Down

0 comments on commit 83111b0

Please sign in to comment.