mirror of
https://github.com/sst/opencode.git
synced 2025-07-08 00:25:00 +00:00
25 lines
522 B
CSS
25 lines
522 B
CSS
.root {
|
|
max-width: var(--md-tool-width);
|
|
border: 1px solid var(--sl-color-divider);
|
|
background-color: var(--sl-color-bg-surface);
|
|
border-radius: .25rem;
|
|
padding: .5rem calc(.5rem + 3px);
|
|
|
|
&[data-flush="true"] {
|
|
border: none;
|
|
background-color: transparent;
|
|
padding: 0
|
|
}
|
|
|
|
pre {
|
|
--shiki-dark-bg: var(--sl-color-bg-surface) !important;
|
|
line-height: 1.6;
|
|
font-size: 0.75rem;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
|
|
span {
|
|
white-space: break-spaces;
|
|
}
|
|
}
|
|
}
|