mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-29 14:25:45 +03:00
e05c1a4a08
* 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>
45 lines
487 B
CSS
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;
|
|
}
|
|
}
|