-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #307 from PrestaShopCorp/style/status-tag-update-c…
…olors fix: #303 - change badge colors
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |