diff --git a/src/components/dialogs/SaveDialog.jsx b/src/components/dialogs/SaveDialog.jsx index 113b166..84a35ba 100644 --- a/src/components/dialogs/SaveDialog.jsx +++ b/src/components/dialogs/SaveDialog.jsx @@ -64,7 +64,7 @@ export class SaveDialog extends React.Component { const { host } = getUrlData(); return ( -
+
diff --git a/src/components/dialogs/StickersDialog.jsx b/src/components/dialogs/StickersDialog.jsx index 6937ff3..39d1b82 100644 --- a/src/components/dialogs/StickersDialog.jsx +++ b/src/components/dialogs/StickersDialog.jsx @@ -9,7 +9,7 @@ type Props = { }; export const StickersDialog = ({ setActiveSticker, width }: Props) => ( -
+
{ Object.keys(STICKERS).map(set => ( diff --git a/src/components/panels/EditorDialog.jsx b/src/components/panels/EditorDialog.jsx index 4cad345..e236e43 100644 --- a/src/components/panels/EditorDialog.jsx +++ b/src/components/panels/EditorDialog.jsx @@ -45,9 +45,7 @@ const DIALOG_CONTENTS = { }; export const Component = (props: Props) => { - const { - mode - } = props; + const { mode } = props; return ( (mode && DIALOG_CONTENTS[mode] && React.createElement(DIALOG_CONTENTS[mode], { ...props })) diff --git a/src/styles/panel.less b/src/styles/panel.less index 48d9279..7603856 100644 --- a/src/styles/panel.less +++ b/src/styles/panel.less @@ -169,6 +169,14 @@ bottom: auto; top: 52px; } + + &.control-dialog-big { + min-width: 555px; + } + + &.control-dialog-medium { + min-width: 460px; + } } .control-dialog-provider {