docbrown/app/javascript/crayons/storybook-utilities/designSystem.scss
Lisa Sy ea00c808bd
Storybook: Add DocsPage and test out static content (#11397)
* Update naming of guidelines section and improve Introduction page

* Add Docs

* Add docs

* Install Docs add-on

- Rename top-level folders and sort manually
- Add MDX static pages

* Updated all Storybook addons to 6.1.3 except for notes as it's currently 5.3.21

* Fixed naming of section for the select component.

* Updated yarn.lock file.

* Added missing dependency @storybook/addon-docs

Co-authored-by: Nick Taylor <nick@dev.to>
2020-12-02 09:56:38 -08:00

45 lines
710 B
SCSS

// TODO: This should be coming from our own files, not a copy in the stories.
.container {
padding: 48px;
font-size: 16px;
line-height: 1.5;
box-sizing: border-box;
}
.container *,
.container *:before,
.container *:after {
box-sizing: border-box;
}
.container > pre {
padding: 24px;
width: 100%;
}
.container > .body {
width: 100%;
font-size: 16px;
line-height: 150%;
border-bottom: 1px solid lightgrey;
padding-bottom: 32px;
}
.container > .body h2 {
padding: 0;
margin: 0;
}
.container > .body p {
margin: 0;
padding: 0;
}
.container > .body ul,
.container > .body ol {
margin: 0 0 0 24px;
padding: 0;
}
.container > .body > * + * {
margin-top: 16px !important;
}