Skip to content

Commit

Permalink
refactor: remplace valeurs en dur par paramètres du thème
Browse files Browse the repository at this point in the history
  • Loading branch information
liliced committed Feb 13, 2025
1 parent 6b2e77a commit 00069ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/source/design-system/banner/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const InnerBanner = styled.div`
margin: auto;
align-items: center;
justify-content: center;
padding: 0.5rem 1rem;
padding: ${({ theme }) => `${theme.spacings.xs} ${theme.spacings.md}`};
background-color: ${({ theme }) =>
theme.darkMode
? theme.colors.bases.primary[700]
Expand Down

0 comments on commit 00069ec

Please sign in to comment.