mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
34 lines
491 B
SCSS
34 lines
491 B
SCSS
.content__item {
|
|
margin-bottom: $spacing-unit * 2;
|
|
}
|
|
|
|
.code-block {
|
|
pre {
|
|
border-radius: 0 0 3px 3px;
|
|
border-top: none;
|
|
}
|
|
|
|
&:before {
|
|
padding: 8px 12px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
font-weight: bold;
|
|
color: $color-white;
|
|
background: $color-blue-5;
|
|
border-bottom: none;
|
|
border-radius: 3px 3px 0 0;
|
|
}
|
|
}
|
|
|
|
.code-block--input {
|
|
&:before {
|
|
content: 'Input';
|
|
}
|
|
}
|
|
|
|
.code-block--output {
|
|
&:before {
|
|
content: 'Output';
|
|
}
|
|
}
|