Skip to content

Commit

Permalink
Merge pull request #307 from PrestaShopCorp/style/status-tag-update-c…
Browse files Browse the repository at this point in the history
…olors

fix: #303 - change badge colors
  • Loading branch information
mattgoud authored Feb 6, 2024
2 parents 8dd9a88 + b47ed99 commit 65acfc9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/theme/src/badge.scss
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
@use './common/typography.scss';
.puik-badge {
@extend .puik-body-default;
@apply rounded-2xl inline-block py-1 px-3 leading-5 font-normal;
@extend .puik-body-default-medium;
@apply rounded-2xl inline-block py-1 px-3 leading-5;

&--success {
@apply bg-green text-white;
@apply bg-green-100;
}

&--warning {
@apply bg-yellow text-primary;
@apply bg-yellow-100;
}

&--danger {
@apply bg-red text-white;
@apply bg-red-100;
}

&--info {
@apply bg-blue text-white;
@apply bg-blue-100;
}

&--neutral {
@apply bg-primary-600 text-white;
@apply bg-primary-300;
}
}

0 comments on commit 65acfc9

Please sign in to comment.