@shopgate/engage
Version:
Shopgate's ENGAGE library.
5 lines • 414 B
JavaScript
import{setCSSCustomProp}from"./cssCustomProperties";/**
* Updates the page background color.
* @param {number} width Sets the page content width.
* @param {string} [unit='px'] Optional width unit
*/export var setPageContentWidth=function setPageContentWidth(width){var unit=arguments.length>1&&arguments[1]!==undefined?arguments[1]:'px';setCSSCustomProp('--page-content-width',"".concat(width).concat(unit));};