Sticky Floating Navbar Disappearing

I want to create a floating sticky navbar for my website. The problem is that once I scroll past the full viewport, the navbar disappears. I am using react and panda-css.

<nav className={css({
  display: "flex",
  alignItems: "center",
  justifyContent: "center",
  position: "sticky",
  top: "0"
})} />
Was this page helpful?