How do I turn off the announcement notification pulse effect?
I noticed the announcements notification on the Resource Center has a pulse effect. How do I turn this setting off?
-
Official commentI was able to find some custom code where you can turn off the Resource Center badge pulse setting:
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(1.6) } } .pendo-resource-center-badge-notification-bubble::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgb(236, 32, 89); border-radius: 100%; z-index: -1; animation: pulse 0s infinite; will-change: transform; }
And then set the animation: pulse 0s.Comment actions
Please sign in to leave a comment.
Comments
1 comment