From d342e9ca418ccb8af53cf30ab4f60c118f2859d7 Mon Sep 17 00:00:00 2001 From: Baron <43506286+BaronAWC@users.noreply.github.com> Date: Mon, 9 Mar 2026 16:53:01 -0700 Subject: [PATCH 1/2] smaller text --- src/Editor/_editor.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Editor/_editor.scss b/src/Editor/_editor.scss index 072c8fc00..956ce3ded 100644 --- a/src/Editor/_editor.scss +++ b/src/Editor/_editor.scss @@ -102,15 +102,16 @@ body { // Toasts .Toastify__toast { font-family: 'Nunito Sans'; - font-weight: 800; - font-size: 24px; + font-weight: normal; + font-size: 16px; border-radius: 3px; + min-height: 0; } .Toastify__toast button{ font-family: 'Nunito Sans'; - font-weight: 800; - font-size: 24px; + font-weight: normal; + font-size: 16px; } .info-toast-background { From 5079609b34c4cd2a8dcb7529d9fb0af339d98b61 Mon Sep 17 00:00:00 2001 From: Baron <43506286+BaronAWC@users.noreply.github.com> Date: Tue, 5 May 2026 17:35:03 -0700 Subject: [PATCH 2/2] shrink padding, move to bottom right, make non-draggable --- src/Editor/Editor.jsx | 4 ++-- src/Editor/_editor.scss | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Editor/Editor.jsx b/src/Editor/Editor.jsx index 2977c8234..b7f1764ae 100644 --- a/src/Editor/Editor.jsx +++ b/src/Editor/Editor.jsx @@ -853,12 +853,12 @@ class Editor extends EditorCore { // Default options for the toast: let defaultOptions = { - position: "top-right", + position: "bottom-right", autoClose: 3000, hideProgressBar: true, closeOnClick: true, pauseOnHover: true, - draggable: true, + draggable: false, className: (type + '-toast-background'), bodyClassName: (type + '-toast-body'), progressClassName: (type + '-toast-progress'), diff --git a/src/Editor/_editor.scss b/src/Editor/_editor.scss index 956ce3ded..a9c249c51 100644 --- a/src/Editor/_editor.scss +++ b/src/Editor/_editor.scss @@ -106,6 +106,7 @@ body { font-size: 16px; border-radius: 3px; min-height: 0; + padding: 6px; } .Toastify__toast button{