From 7d9f874364ec6e255e62eb3027011bfed267904c Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 17 May 2022 18:37:38 +0200 Subject: chore: adjust articles styles * change animation on article card hover * change comments section alignment --- src/components/atoms/headings/heading.stories.tsx | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'src/components/atoms/headings/heading.stories.tsx') diff --git a/src/components/atoms/headings/heading.stories.tsx b/src/components/atoms/headings/heading.stories.tsx index da5a718..0e3885d 100644 --- a/src/components/atoms/headings/heading.stories.tsx +++ b/src/components/atoms/headings/heading.stories.tsx @@ -8,10 +8,26 @@ export default { title: 'Atoms/Typography/Headings', component: Heading, args: { + alignment: 'left', isFake: false, withMargin: true, }, argTypes: { + alignment: { + control: { + type: 'select', + }, + description: 'The title alignment.', + options: ['center', 'left'], + table: { + category: 'Options', + defaultValue: { summary: 'left' }, + }, + type: { + name: 'string', + required: false, + }, + }, className: { control: { type: 'text', @@ -32,6 +48,16 @@ export default { required: true, }, }, + id: { + control: { + type: 'text', + }, + description: 'An unique id.', + type: { + name: 'string', + required: false, + }, + }, isFake: { control: { type: 'boolean', -- cgit v1.2.3