diff --git a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css index b9b512c085..a811aaa720 100644 --- a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css +++ b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.css @@ -45,12 +45,3 @@ .option-row.centered { justify-content: center; } - -.option-row.full-width { - flex-direction: column; - align-items: stretch; -} - -.option-row.full-width .option-row-input { - flex-shrink: unset; -} diff --git a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx index 3a6dbaca4e..92f0c04315 100644 --- a/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx +++ b/apps/client/src/widgets/type_widgets/options/components/OptionsRow.tsx @@ -8,15 +8,14 @@ interface OptionsRowProps { description?: string; children: VNode; centered?: boolean; - fullWidth?: boolean; } -export default function OptionsRow({ name, label, description, children, centered, fullWidth }: OptionsRowProps) { +export default function OptionsRow({ name, label, description, children, centered }: OptionsRowProps) { const id = useUniqueName(name); const childWithId = cloneElement(children, { id }); return ( -
+
{label && } {description && {description}} diff --git a/apps/client/src/widgets/type_widgets/options/spellcheck.tsx b/apps/client/src/widgets/type_widgets/options/spellcheck.tsx index df79f2402f..7e919a6500 100644 --- a/apps/client/src/widgets/type_widgets/options/spellcheck.tsx +++ b/apps/client/src/widgets/type_widgets/options/spellcheck.tsx @@ -38,10 +38,9 @@ function ElectronSpellcheckSettings() { onChange={setSpellCheckEnabled} /> - - {spellCheckEnabled && } + {spellCheckEnabled && } {spellCheckEnabled && } ); @@ -78,7 +77,7 @@ function SpellcheckLanguages() { }, []); return ( - + - + ); }