From fcac7f2701294e0201ef0f9f1e0ce97090805d17 Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Thu, 11 May 2023 16:21:12 +0200 Subject: [PATCH] Override hardcoded save button width The save button wrapper have a fixed width: https://github.com/scaleflex/filerobot-image-editor/blob/775f3cbc827755fda0f067265719df0787b355c8/packages/react-filerobot-image-editor/src/components/Topbar/SaveButton.jsx#L31 This PR override this hardcoded value to give it more flexibility. Signed-off-by: Louis Chemineau --- src/components/ImageEditor.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/ImageEditor.vue b/src/components/ImageEditor.vue index 6e3ecdef2..e15cdd0b1 100644 --- a/src/components/ImageEditor.vue +++ b/src/components/ImageEditor.vue @@ -496,6 +496,10 @@ export default { } // Save button fixes +.FIE_topbar-save-wrapper { + width: auto !important; +} + .FIE_topbar-save-button { color: var(--color-primary-text) !important; border: none !important;