Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
The component failed to render properly, likely due to a configuration issue in Storybook. Here are some common causes and how you can address them:
This is a pre-release version and is not production ready. For new and ongoing projects, please refer to the latest Design System version.
next.design-system.post.ch/?path=/docs/4b505a3e-f4ce-48ce-8fae-6aa8158d66e8--docs&story=Default#4b505a3e-f4ce-48ce-8fae-6aa8158d66e8--default
/?path=/story/4b505a3e-f4ce-48ce-8fae-6aa8158d66e8--default&full=true
<div class="my-container overflow-visible"> <div class="content"> This is a long text content that demonstrates how the overflow property works. This paragraph contains several sentences that will help show the different overflow behaviors when the container is too small to contain all the text. It's useful for testing different overflow settings and seeing how they affect the layout and scrolling capabilities of the container element. </div> </div>
The properties available for the overflow of elements are the following:
overflow
for the overflow of the content both horizontally and vertically.overflow-x
for the overflow of the content horizontally.overflow-y
for the overflow of the content vertically.The values available are the following:
visible
(default) sets all of the content to be visible and will overflow the container if needed.auto
lets the browser decide what to do and will add scrollbar if needed.hidden
hides all of the content that would overflow the container, without any scrollbars.scroll
does not overflow the content and adds scrollbars to the container.