Merge remote-tracking branch 'soapbox/develop' into events-

This commit is contained in:
marcin mikołajczak
2022-10-06 00:01:39 +02:00
23 changed files with 1748 additions and 1752 deletions

View File

@ -11,7 +11,7 @@ export const addGreentext = (html: string): string => {
.replace(/@\w+/gi, '') // remove mentions (even failed ones)
.trim()
.startsWith('>')) {
return `<span class='greentext'>${string}</span>`;
return `<span class='text-greentext'>${string}</span>`;
} else {
return string;
}