I’ve a header like so:

.header-wrapper {
  padding: 32px 24px 0 24px;
  show: flex;
  place: sticky;
  high: 0;
  z-index: 3;
  background-color: $color-white;
}
<header class="header-wrapper">
  <h2 data-qa="customersTitle" class="header-label">Clients</h2>
</header>

The header-wrapper class is written like above and can’t be modified. It will need to have a show:flex; attribute, in any other case some components break.

What I want is: after scrolling slightly bit, a shadow to look underneath the header. How can I try this? (If I do not use show:flex it really works. However i want to make use of it)

Thanks rather a lot upfront!