diff --git a/src/stories/components/skip-link/SkipLink.stories.ts b/src/stories/components/skip-link/SkipLink.stories.ts index af2533022..07dd7eb64 100644 --- a/src/stories/components/skip-link/SkipLink.stories.ts +++ b/src/stories/components/skip-link/SkipLink.stories.ts @@ -14,13 +14,16 @@ const meta = { const cssVarArgs = getCssVariableArgs(args); const style = cssVarArgs ? styleMap(cssVarArgs) : nothing; return html` - +
+ +
Target
+
`; }, parameters: { @@ -30,7 +33,6 @@ const meta = { ...generateCustomElementArgTypes({ tagName: component, controls: { - target: { control: 'text' }, theme: { control: 'select', options: ['default', 'primary', 'secondary', 'tertiary', 'success', 'error', 'warning', 'info'] }, muted: { control: 'boolean' }, persistent: { control: 'boolean' }, @@ -39,7 +41,6 @@ const meta = { }) }, args: { - target: 'main-content', theme: 'default', muted: false, persistent: false,