Skip to content

Commit 742c451

Browse files
committed
fix: allow overflow on body
1 parent a4fe403 commit 742c451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/styles.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ globalStyle('html, body', {
2323
globalStyle('body', {
2424
// Since `@sanity/ui-workshop` is used by `@sanity/ui` we need to fallback to a stable var that exists in dev
2525
backgroundColor: fallbackVar(vars.color.bg, 'var(--card-bg-color)'),
26-
overflow: 'hidden',
26+
overflow: 'auto',
2727
})
2828

2929
export const canvasViewTransition = createViewTransition('canvas')

0 commit comments

Comments
 (0)