Skip to content

Instantly share code, notes, and snippets.

@gillkyle
Created October 30, 2024 22:06
Show Gist options
  • Save gillkyle/917d34ae3788d0d4054cb70e0d90c791 to your computer and use it in GitHub Desktop.
Save gillkyle/917d34ae3788d0d4054cb70e0d90c791 to your computer and use it in GitHub Desktop.
/* initially hide all banners except the first one */
.notice-banner {
display: none;
}
/* show the first banner that is not dismissed */
.notice-banner:not([data-dismissed='true']):first-of-type {
display: flex;
}
/* show the next banner when the current one is dismissed */
.notice-banner[data-dismissed='true'] + .notice-banner:not([data-dismissed='true']) {
display: flex;
}
.notice-banner {
position: absolute;
top: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment