1
0
mirror of https://github.com/sendevia/website.git synced 2026-03-08 08:44:15 +08:00
Files
website/.vitepress/theme/styles/_components/code.scss

66 lines
1.2 KiB
SCSS

@use "../mixin";
// code
pre.shiki {
position: relative;
margin-block: 0px;
code {
@include mixin.typescale-style("body-large", $font-family: Source Code Pro);
display: inline-block;
margin: 0px;
min-height: 46px;
width: 100%;
color: var(--shiki-light);
vertical-align: middle;
word-break: break-word;
border-radius: var(--md-sys-shape-corner-medium);
background-color: var(--shiki-light-bg);
span {
color: var(--shiki-light);
background-color: var(--shiki-light-bg);
}
@media (prefers-color-scheme: dark) {
color: var(--shiki-dark);
background-color: var(--shiki-dark-bg);
span {
color: var(--shiki-dark);
background-color: var(--shiki-dark-bg);
}
}
}
}
code.language-plaintext {
padding-inline: 4px;
color: var(--md-sys-color-inverse-surface);
text-indent: initial;
word-break: break-word;
border-radius: var(--md-sys-shape-corner-small);
background-color: var(--md-sys-color-inverse-on-surface);
overflow: hidden;
&::selection {
color: var(--md-sys-color-on-tertiary);
background-color: var(--md-sys-color-tertiary);
}
}