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.
Use border utilities to define and style the border
and border-radius
of an element.
The border
utility provides the ability to add, remove, or style borders using predefined classes.
border
: Applies a border on all sides of an element.
border-{side}
: Sets the border on a specific side. Supports border-top
(top edge), border-end
(inline end, mapped to right in LTR), border-bottom
(bottom edge), and border-start
(inline start, mapped to left in LTR).
border-width
: Defines the border width.
next.design-system.post.ch/?path=/docs/cbee1b5e-c98b-4818-8b88-b3c9989796d8--docs&story=Border Sides#cbee1b5e-c98b-4818-8b88-b3c9989796d8--border-sides
/?path=/story/cbee1b5e-c98b-4818-8b88-b3c9989796d8--border-sides&full=true
<div class="border">Sample Text</div>
Border subtraction can be achieved with the use of the border-{side}-0
classes.
next.design-system.post.ch/?path=/docs/cbee1b5e-c98b-4818-8b88-b3c9989796d8--docs&story=Remove Borders#cbee1b5e-c98b-4818-8b88-b3c9989796d8--remove-borders
/?path=/story/cbee1b5e-c98b-4818-8b88-b3c9989796d8--remove-borders&full=true
<div class="border">Sample Text</div>
Add the rounded
class to an element to easily apply a border-radius on its corners.
rounded-{side}-{scale}
: Αpplies a border-radius on all or specific sides and defines its scale. Predefined classes for the side
are: top
, end
, bottom
and start
and for the scale
are: 4
: 4px, 8
: 8px, pill
: 50rem and circle
: 50%.next.design-system.post.ch/?path=/docs/cbee1b5e-c98b-4818-8b88-b3c9989796d8--docs&story=Border Rounded#cbee1b5e-c98b-4818-8b88-b3c9989796d8--border-rounded
/?path=/story/cbee1b5e-c98b-4818-8b88-b3c9989796d8--border-rounded&full=true
<div class="border rounded-4">Sample Text</div>