fix(code): fix duplicate selector rules

This commit is contained in:
郭桓桓 2023-03-02 00:09:17 +08:00
parent 3ddc662741
commit e13c83de24
Signed by: kuohuanhuan
GPG Key ID: FD846A0A797B0D75
1 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,8 @@ code {
font-weight: 600;
font-family: var(--xm-font-mono);
color: var(--xm-c-dark);
&::before, &::after {
&::before,
&::after {
content: '`';
}
}
@ -26,9 +27,7 @@ pre {
border-width: 0;
border-radius: 0;
line-height: inherit;
&::before {
content: none;
}
&::before,
&::after {
content: none;
}