Fix tile droppable rendering on Safari
This commit is contained in:
parent
a8c355f251
commit
8b0ee7075d
@ -40,7 +40,10 @@ function TilesContainer({ children }) {
|
|||||||
id={ADD_TO_MAP_ID}
|
id={ADD_TO_MAP_ID}
|
||||||
style={{
|
style={{
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
inset: 0,
|
top: 0,
|
||||||
|
bottom: 0,
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
zIndex: -1,
|
zIndex: -1,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
@ -142,7 +142,6 @@ function TilesOverlay({ modalSize, children }) {
|
|||||||
style={{
|
style={{
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
width: modalSize.width,
|
width: modalSize.width,
|
||||||
// height: modalSize.height,
|
|
||||||
height: `calc(100% + ${
|
height: `calc(100% + ${
|
||||||
modalSize.height - containerSize.height + 48
|
modalSize.height - containerSize.height + 48
|
||||||
}px)`,
|
}px)`,
|
||||||
@ -159,7 +158,10 @@ function TilesOverlay({ modalSize, children }) {
|
|||||||
id={UNGROUP_ID}
|
id={UNGROUP_ID}
|
||||||
style={{
|
style={{
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
inset: 0,
|
top: 0,
|
||||||
|
bottom: 0,
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
zIndex: -1,
|
zIndex: -1,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user