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 9519534 commit 4935e50Copy full SHA for 4935e50
src/components/stage-header/stage-header.jsx
@@ -195,7 +195,12 @@ const StageHeaderComponent = function (props) {
195
<Box
196
className={styles.stageHeaderWrapper}
197
// + 2 px because the stage will have 2 pixels of border around it
198
- style={{minWidth: `${stageDimensions.width + 2}px`}}
+ style={{minWidth: `${
199
+ (stageSizeMode === STAGE_SIZE_MODES.full ||
200
+ stageSizeMode === STAGE_SIZE_MODES.large) &&
201
+ stageDimensions.width <= 480
202
+ ? 482 : stageDimensions.width + 2}px`
203
+ }}
204
>
205
<Box className={styles.stageMenuWrapper}>
206
<Controls
0 commit comments