We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1fd31d commit a0faec7Copy full SHA for a0faec7
layout/theme.liquid
@@ -58,7 +58,7 @@
58
<main
59
id="main-content"
60
role="main"
61
- class="site-main-tw-component relative">
+ class="site-main relative">
62
{{ content_for_layout }}
63
</main>
64
src/js/alpine/stores/global.js
@@ -52,7 +52,7 @@ export default {
52
// Hide promo bar when scrolling down more than 100px
53
if (window.scrollY > 100) {
54
this.isPromoBarVisible = false
55
- } else {
+ } else if (window.scrollY < 60) {
56
this.isPromoBarVisible = true
57
}
0 commit comments