-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mrc): fix action-banner style and alignement
ref: #15742 Signed-off-by: LIDRISSI Hamid <[email protected]>
- Loading branch information
1 parent
ad7bd8d
commit 15f80d8
Showing
2 changed files
with
32 additions
and
8 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
23 changes: 23 additions & 0 deletions
23
packages/manager-react-components/src/components/action-banner/index.css
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
.action-banner.action-banner—-success .action-banner__text::part(text) { | ||
color: var(--ods-color-success-700); | ||
} | ||
|
||
.action-banner.action-banner—-warning .action-banner__text::part(text) { | ||
color: var(--ods-color-warning-700); | ||
} | ||
|
||
.action-banner.action-banner—-information .action-banner__text::part(text) { | ||
color: var(--ods-color-information-700); | ||
} | ||
|
||
.action-banner.action-banner—-danger .action-banner__text::part(text) { | ||
color: var(--ods-color-critical-700); | ||
} | ||
|
||
.action-banner.action-banner—-critical .action-banner__text::part(text) { | ||
color: var(--ods-color-critical-700); | ||
} |