diff --git a/ts/deckoptions/RevertButton.svelte b/ts/deckoptions/RevertButton.svelte index 4ac271012..0291d6d78 100644 --- a/ts/deckoptions/RevertButton.svelte +++ b/ts/deckoptions/RevertButton.svelte @@ -32,7 +32,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html let modified: boolean; $: modified = !isEqual(value, defaultValue); - $: className = !modified ? "opacity-25" : ""; + $: className = !modified ? "opacity-0" : ""; const isTouchDevice = getContext(touchDeviceKey);