@gem-sdk/core 1.23.0-staging.289 → 1.23.0-staging.290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -225,7 +225,8 @@ const appendAnimation = (props, liquid)=>{
|
|
|
225
225
|
mobile: getInitOpacity('mobile')
|
|
226
226
|
};
|
|
227
227
|
const inheritParentStyle = {
|
|
228
|
-
all: tag === 'Section' ? '' : 'inherit'
|
|
228
|
+
all: tag === 'Section' ? '' : 'inherit',
|
|
229
|
+
position: 'static'
|
|
229
230
|
};
|
|
230
231
|
return render.template`
|
|
231
232
|
${render.RenderIf(convert.isLocalEnv, `<script src="{{ 'gp-animation.js' | asset_url }}" defer="defer"></script>`, `<script src="${convert.baseAssetURL}/assets/gp-animation.js" defer="defer"></script>`)}
|
|
@@ -221,7 +221,8 @@ const appendAnimation = (props, liquid)=>{
|
|
|
221
221
|
mobile: getInitOpacity('mobile')
|
|
222
222
|
};
|
|
223
223
|
const inheritParentStyle = {
|
|
224
|
-
all: tag === 'Section' ? '' : 'inherit'
|
|
224
|
+
all: tag === 'Section' ? '' : 'inherit',
|
|
225
|
+
position: 'static'
|
|
225
226
|
};
|
|
226
227
|
return template`
|
|
227
228
|
${RenderIf(isLocalEnv, `<script src="{{ 'gp-animation.js' | asset_url }}" defer="defer"></script>`, `<script src="${baseAssetURL}/assets/gp-animation.js" defer="defer"></script>`)}
|