Fix double scroll bar in pre-publish panel (#45671)
* Fix double scroll bar # Conflicts: # packages/js/product-editor/src/components/prepublish-panel/style.scss * Add changelog * Add comment to styles
This commit is contained in:
parent
a461a86ee0
commit
99853c19bf
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: minor
|
||||||
|
Type: fix
|
||||||
|
|
||||||
|
Fix double scroll bar in pre-publish panel #45671
|
|
@ -52,7 +52,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
min-height: calc( 100% - #{ $header-height + 220px } );
|
// Ensure the pre-publish panel content accounts for the header and footer height.
|
||||||
|
min-height: calc( 100% - #{ $header-height + 222px } );
|
||||||
.editor-post-publish-panel__link {
|
.editor-post-publish-panel__link {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
padding-left: $gap-smallest;
|
padding-left: $gap-smallest;
|
||||||
|
|
Loading…
Reference in New Issue