mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-04 11:53:18 +03:00
48d2e8baea
* bump SB version * fix Segmented control import * formatting fix * fix formatting on build * migrate to Terrazzo + utility classes WIP * copy update * Update c-colors.mdx * fix hex color * move diff variables into tokens * Update c-colors.mdx * Update pnpm-lock.yaml * Update pnpm-lock.yaml * update terrazzo * Update pnpm-lock.yaml
41 lines
450 B
CSS
41 lines
450 B
CSS
.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;
|
|
}
|
|
}
|