1
0
mirror of https://github.com/kuohuanhuan/x-markdown-css.git synced 2024-11-25 06:18:19 +00:00

refactor(_partial): sepreate SCSS files into several partials

This commit is contained in:
2023-02-28 23:14:32 +08:00
parent 1bb7e502ac
commit d95065f5d2
11 changed files with 279 additions and 264 deletions

View File

@ -0,0 +1,20 @@
blockquote,
q {
margin-top: 1.6rem;
padding-left: 1rem;
font-weight: 500;
font-style: italic;
color: inherit;
border-color: var(--xm-c-blockquote-color);
border-left-width: .25rem;
quotes: '\201C''\201D''\2018''\2019';
margin-bottom: 1.6rem;
p {
&:first-of-type::before {
content: open-quote;
}
&:last-of-type::after {
content: close-quote;
}
}
}