@mentions is deff fixed, idk about spinner. don't merge yet, might edit
+13
-4
Diff
round #0
+2
-1
src/components/Loader.tsx
+2
-1
src/components/Loader.tsx
+2
-2
src/style.css
+2
-2
src/style.css
+9
-1
src/view/com/composer/text-input/TextInput.web.tsx
+9
-1
src/view/com/composer/text-input/TextInput.web.tsx
···
393
394
return (
395
<>
396
+
<View
397
+
style={[
398
+
styles.container,
399
+
hasRightPadding && styles.rightPadding,
400
+
{
401
+
// @ts-ignore
402
+
'--mention-color': t.palette.primary_500,
403
+
},
404
+
]}>
405
{/* @ts-ignore inputStyle is fine */}
406
<EditorContent editor={editor} style={inputStyle} />
407
</View>