Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@
}
}

:host([layout="vertical"]) {
@apply w-full;
}

:host([layout="vertical"]) .container {
@apply border-color-3
mx-0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,3 +296,22 @@ export const horizontalSingleLayout_TestOnly = (): string => html`
</calcite-stepper>
</div>
`;

export const verticalLayoutFullWidth = (): string =>
html`<calcite-stepper layout="vertical" scale="s" style="width: 1000px;">
<calcite-stepper-item heading="Scale s" description="Add members without sending invitations"
>Step 1 Content Goes Here</calcite-stepper-item
>
</calcite-stepper>

<calcite-stepper layout="vertical">
<calcite-stepper-item heading="Scale m" description="Add members without sending invitations"
>Step 1 Content Goes Here</calcite-stepper-item
>
</calcite-stepper>

<calcite-stepper layout="vertical" scale="l">
<calcite-stepper-item heading="Scale l" description="Add members without sending invitations"
>Step 1 Content Goes Here</calcite-stepper-item
>
</calcite-stepper>`;