Skip to content

Commit 7157afa

Browse files
committed
fix(scraps): overlay position
1 parent 49c3548 commit 7157afa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static/app/components/globalModal/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export function GlobalModal({onClose}: Props) {
292292
const fullPageCss = css`
293293
position: fixed;
294294
top: 0;
295-
right: var(--scrollbar-size, 0);
295+
right: 0;
296296
bottom: 0;
297297
left: 0;
298298
`;
@@ -309,6 +309,7 @@ const Backdrop = styled('div')`
309309

310310
const Container = styled('div')`
311311
${fullPageCss};
312+
right: var(--scrollbar-size, 0);
312313
z-index: ${p => p.theme.zIndex.modal};
313314
display: flex;
314315
justify-content: center;

0 commit comments

Comments
 (0)