1
1
Fork 1
Dieser Commit ist enthalten in:
Thibaut Girka 2019-04-27 17:19:22 +02:00 committet von asonix
Ursprung 97d8239837
Commit 57a1c42f3c
1 geänderte Dateien mit 26 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -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) {