We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13b4c6 commit c973e71Copy full SHA for c973e71
1 file changed
packages/pluggableWidgets/chart-playground-web/src/ui/Sidebar.scss
@@ -87,8 +87,15 @@
87
88
.widget-custom-config {
89
height: var(--top-panel-h);
90
+ // --panel-header-1 and --editor-h are sized to sum exactly to --top-panel-h; flex +
91
+ // overflow: hidden is a safety clamp if that arithmetic ever drifts (zoom rounding, a
92
+ // header wrapping to two lines), not load-bearing for the normal case.
93
+ display: flex;
94
+ flex-flow: column nowrap;
95
+ overflow: hidden;
96
97
.widget-panel-header {
98
+ flex: 0 0 auto;
99
justify-content: space-between;
100
}
101
0 commit comments