Skip to content

Commit 2e93c7b

Browse files
committed
update width
1 parent 3fedd90 commit 2e93c7b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/wizard/src/Wizard.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default {
1818
},
1919
decorators: [
2020
Fn => (
21-
<div style={{ margin: -100, height: '100vh' }}>
21+
<div style={{ margin: -100, height: '100vh', width: '100vw' }}>
2222
<Fn />
2323
</div>
2424
),
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
import { css } from '@leafygreen-ui/emotion';
22

3-
export const baseStyles = css``;
3+
export const baseStyles = css`
4+
width: 100%;
5+
`;

0 commit comments

Comments
 (0)