I have an element that I am making sticky with position sticky:
#header {
    position: sticky;
    width: 100vw;
    top: 0;
}
<app-header id="header"></app-header>
And that works fine, but I realised that if I use:
body {
  overflow-x: hidden;
}
That breaks sticky, and I need to set body overflow-x to hidden, how can I fix that, with only CSS solution, no JS solutions?