Skip to content

Commit

Permalink
chore: updated color in onboarding
Browse files Browse the repository at this point in the history
Signed-off-by: Evzen Gasta <[email protected]>
  • Loading branch information
gastoner committed Sep 5, 2024
1 parent 425afb1 commit 0f53705
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function warnings(this: CompileContext, d: any) {
const items = JSON.parse(decode(d.label) ?? '');
for (const item of items) {
// start the div representing one row
this.tag('<div class="flex flex-row space-x-3 bg-charcoal-600 p-4 rounded-md items-start">');
this.tag('<div class="flex flex-row space-x-3 bg-[var(--pd-invert-content-card-bg)] p-4 rounded-md items-start">');
// add icon representing the warning status
this.tag('<div class="mr-2 flex justify-center">');
this.tag(item.state === 'successful' ? '✅' : '❌');
Expand Down

0 comments on commit 0f53705

Please sign in to comment.