29 lines
451 B
Plaintext
29 lines
451 B
Plaintext
pre code,
|
|
pre code.hljs,
|
|
.hljs {
|
|
@apply .p-4;
|
|
@apply .text-sm;
|
|
@apply .border-l-4;
|
|
@apply .border-grey-dark;
|
|
@apply .block;
|
|
@apply .bg-grey-lighter;
|
|
@apply .overflow-x-scroll;
|
|
}
|
|
|
|
p,
|
|
li {
|
|
code {
|
|
@apply .bg-grey-lighter .inline-block;
|
|
padding: 1px 3px;
|
|
}
|
|
}
|
|
|
|
.note {
|
|
@apply .bg-blue-lighter;
|
|
@apply .p-4;
|
|
@apply .border-l-4;
|
|
@apply .border-blue;
|
|
}
|
|
|
|
.note p:last-child { @apply .mb-0; }
|