Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notification blinks when it appears #172

Open
FanManutd opened this issue May 23, 2023 · 2 comments
Open

Notification blinks when it appears #172

FanManutd opened this issue May 23, 2023 · 2 comments

Comments

@FanManutd
Copy link

Hi! Notification blinks when it appears with minimum settings.

1

This does not happen on the demo page.

Sandbox here

Any idea how to fix this?

@teodosii
Copy link
Owner

teodosii commented Jun 5, 2023

That is indeed very odd, I will need to try to debug this behavior, it seems there's something going on in the codebox environment, even the samples I use on demo don't work there apparently but I have no clue why atm.

@cjpgaspar
Copy link

I had the same issue, fixed it temporarily with a transition like so:

div[class^="rnc__notification-container--"] {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
div[class^="rnc__notification-container--"]:has(> .rnc__notification) {
  visibility: visible;
  opacity: 1;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants