gitbutler/packages/ui/.storybook/stories-styles.css
Pavel Laptev e05c1a4a08
Move dummy UI and minor code refactor (#5061)
* update: storybook styles

* fix: Link button prop

* move borderless textarea to UI

* add: BorderlessTextarea story

* remove unused `autoHeight`

* simplify "Props" names

* migrate to Svelte 5: EmptyState component

* fix: autofocus when open the branches search

* eslint

* lint fixes

* lint fixes

---------

Co-authored-by: estib <stron@me.com>
2024-10-09 17:00:35 +02:00

45 lines
487 B
CSS

body {
color: var(--clr-text-1);
}
.sbdocs {
hr {
margin: 50px 0 30px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600;
border-bottom: none;
}
}
.colors {
display: flex;
width: 100%;
}
.color-item {
flex: 1;
display: flex;
flex-direction: column;
padding: 40px 10px 10px;
background: repeating-linear-gradient(
-55deg,
#d9d9d9,
#d9d9d9 1px,
transparent 1px,
transparent 6px
);
border: 1px solid #d9d9d9;
span {
font-size: 12px;
color: #000;
}
}