Esse commit está contido em:
Thibaut Girka 2019-04-27 17:19:22 +02:00 commit de asonix
commit 57a1c42f3c
1 arquivos alterados com 26 adições e 0 exclusões

Ver arquivo

@ -712,6 +712,11 @@
&:not(.rich-text) {
del {
text-decoration: none;
&::before,
&::after {
content: '~~';
}
}
code {
@ -720,6 +725,11 @@
u {
text-decoration: none;
&::before,
&::after {
content: '__';
}
}
h1::before {
@ -741,6 +751,22 @@
h5::before {
content: '##### ';
}
b,
strong {
&::before,
&::after {
content: '**';
}
}
em,
i {
&::before,
&::after {
content: '*';
}
}
}
&:not(.rich-blocks) {