Merge pull request #3433 from woocommerce/PCP-4619-notification-in-firefox

Onboarding: Notification for Firefox users (4619)
This commit is contained in:
Emili Castells 2025-06-20 10:58:28 +02:00 committed by GitHub
commit bc6acf3679
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 68 additions and 1 deletions

View file

@ -69,3 +69,23 @@
margin-top: var(--block-action-gap, 16px);
}
}
.ppcp--notice {
display: block;
padding: 10px;
margin: 10px 0;
line-height: 1.5714285714;
font-size: 0.8125rem;
background: var(--notice-background);
color: var(--notice-text);
&.type--info {
--notice-background: var(--color-success-background);
--notice-text: var(--color-success-text);
}
&.type--error {
--notice-background: var(--color-failure-background);
--notice-text: var(--color-failure-text);
}
}