Skip to content

Commit ce5daf1

Browse files
committed
Revert "Fix stage header size when stage width <480 (#1042)"
This reverts commit 4935e50.
1 parent 5cdab7e commit ce5daf1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/components/stage-header/stage-header.jsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,7 @@ const StageHeaderComponent = function (props) {
195195
<Box
196196
className={styles.stageHeaderWrapper}
197197
// + 2 px because the stage will have 2 pixels of border around it
198-
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-
}}
198+
style={{minWidth: `${stageDimensions.width + 2}px`}}
204199
>
205200
<Box className={styles.stageMenuWrapper}>
206201
<Controls

0 commit comments

Comments
 (0)