36 lines
594 B
CSS
Vendored
36 lines
594 B
CSS
Vendored
.code {
|
|
@apply font-mono;
|
|
@apply text-gray-700;
|
|
}
|
|
|
|
.code-inline {
|
|
@apply inline-block;
|
|
@apply -my-1;
|
|
@apply px-2;
|
|
@apply py-1;
|
|
@apply rounded-sm;
|
|
@apply bg-gray-100;
|
|
@apply border;
|
|
@apply border-tint-100;
|
|
@apply font-mono;
|
|
@apply text-gray-700;
|
|
@apply break-all;
|
|
}
|
|
|
|
.code-block {
|
|
@apply block;
|
|
@apply px-4;
|
|
@apply py-2;
|
|
@apply rounded-sm;
|
|
@apply bg-gray-100;
|
|
@apply border;
|
|
@apply border-tint-100;
|
|
@apply font-mono;
|
|
@apply text-gray-700;
|
|
}
|
|
|
|
.code-inline pre,
|
|
.code-block pre {
|
|
white-space: pre-wrap;
|
|
}
|