Skip to content

Commit

Permalink
Fix inserter position and size on mobile (#61034)
Browse files Browse the repository at this point in the history
Co-authored-by: youknowriad <[email protected]>
Co-authored-by: draganescu <[email protected]>
  • Loading branch information
3 people authored Apr 24, 2024
1 parent ba3a51f commit 6d444aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ function InterfaceSkeleton(
<div
style={ {
position: 'absolute',
width: 'fit-content',
width: isMobileViewport
? '100vw'
: 'fit-content',
height: '100%',
right: 0,
} }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ html.interface-interface-skeleton__html-container {
@include editor-left(".interface-interface-skeleton");

.interface-interface-skeleton__body {
position: relative;
flex-grow: 1;
display: flex;

Expand Down

0 comments on commit 6d444aa

Please sign in to comment.