mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 09:50:39 +00:00
16 lines
305 B
SCSS
16 lines
305 B
SCSS
|
code {
|
||
|
background-color: var(--clr-foreground);
|
||
|
border: pxToRem(1px) solid var(--clr-foreground-transparent);
|
||
|
border-radius: 0.25em;
|
||
|
color: var(--clr-background);
|
||
|
font-size: 95%;
|
||
|
padding: 0.15em;
|
||
|
|
||
|
pre & {
|
||
|
border: none;
|
||
|
border-radius: 0;
|
||
|
font-size: inherit;
|
||
|
padding: 0;
|
||
|
}
|
||
|
}
|