Skip to content

Commit 0f9e53a

Browse files
authored
feat(Content): add m size (#1120)
* feat(Content): add m size * fix(Content): fix centered state
1 parent 853ecc0 commit 0f9e53a

File tree

90 files changed

+173
-19
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+173
-19
lines changed

src/blocks/ContentLayout/__stories__/ContentLayout.mdx

Lines changed: 1 addition & 1 deletion

src/blocks/ContentLayout/__stories__/ContentLayout.stories.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ const WithFilesTemplate: StoryFn<ContentLayoutBlockModel> = (args) => (
7272
size: 'l',
7373
textContent: {title: getSizeTitle('L'), ...args.textContent},
7474
},
75+
{
76+
...args,
77+
size: 'm',
78+
textContent: {title: getSizeTitle('M'), ...args.textContent},
79+
},
7580
{
7681
...args,
7782
size: 's',
@@ -91,6 +96,11 @@ const SizesTemplate: StoryFn<ContentLayoutBlockModel> = (args) => (
9196
size: 'l',
9297
textContent: {title: getSizeTitle('L'), ...args.textContent},
9398
},
99+
{
100+
...args,
101+
size: 'm',
102+
textContent: {title: getSizeTitle('M'), ...args.textContent},
103+
},
94104
{
95105
...args,
96106
size: 's',

0 commit comments

Comments
 (0)