feat: Move text formatting bar above textarea

This commit is contained in:
Jay Sitter 2023-06-16 17:47:42 -04:00
parent afcffce572
commit ebba5bdd80
3 changed files with 49 additions and 59 deletions

View file

@ -100,12 +100,9 @@ export class LanguageSelect extends Component<LanguageSelectProps, any> {
return (
<select
className={classNames(
"lang-select-action",
this.props.iconVersion
? "btn btn-sm text-muted"
: "form-control custom-select"
)}
className={classNames("lang-select-action", {
"form-control custom-select": !this.props.iconVersion,
})}
id={this.id}
onChange={linkEvent(this, this.handleLanguageChange)}
aria-label={i18n.t("language_select_placeholder")}