Fix editing monospace text

This commit is contained in:
Eduard Kuzmenko 2021-08-26 16:25:14 +03:00
parent 46901ed65f
commit bc10b6deb8
2 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export const markdownTags: {[type in MarkdownType]: MarkdownTag} = {
entityName: 'messageEntityItalic'
},
monospace: {
match: '[style*="monospace"], [face="monospace"]',
match: '[style*="monospace"], [face="monospace"], pre',
entityName: 'messageEntityPre'
},
strikethrough: {

View File

@ -131,6 +131,11 @@ $chat-helper-size: 36px;
font-size: var(--messages-text-size);
line-height: var(--line-height);
pre {
display: inline;
margin: 0;
}
@include animation-level(2) {
transition: height .1s;
}