uikit / uikit-site

🌎 Website and Documentation
https://getuikit.com
365 stars 331 forks source link

Sticky not working in modal or inside uk-position-cover if it is not the first element #247

Closed Elawphant closed 1 year ago

Elawphant commented 1 year ago
<page>
    <somestuff></somestuff>
    <div class="uk-position-fixed uk-position-cover uk-display-block uk-position-z-index" uk-overflow-auto> <!-- or open modal -->
      <card>
        <someContentHere></someContentHere>
        <div uk-sticky></div> <!-- this must get sticky when we reach to it -->
        <someContentHere></someContentHere>
      </card>
    </div>
</page>

Provided the example structure, sticky does not work if it is not the first element of the fixed modal or cover.