diff --git a/packages/customize-widgets/src/controls/style.scss b/packages/customize-widgets/src/controls/style.scss index 500e3c9afc41e7..57bc56d9fcbbf3 100644 --- a/packages/customize-widgets/src/controls/style.scss +++ b/packages/customize-widgets/src/controls/style.scss @@ -8,4 +8,17 @@ // Make the entire sidebar background white. min-height: 100%; background-color: $white; + + // Override the inline styles added via JS that make the section title + // sticky feature work. The customize widget block-editor disables this + // sticky title. + padding-top: 10px !important; + + .customize-section-title { + // Disable the sticky title. `!important` as this overrides inline + // styles added via JavaScript. + position: static !important; + top: 0 !important; + width: unset !important; + } }