From be8d6ad9ead99be3abb8c4642fd3a95ac253b6c5 Mon Sep 17 00:00:00 2001 From: Petromir Petrov Date: Thu, 4 Jan 2024 16:31:28 +0200 Subject: [PATCH] fix: wallet not interactive after save in dev mode --- src/App.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/App.scss b/src/App.scss index c413b191e7..1dcdb29337 100644 --- a/src/App.scss +++ b/src/App.scss @@ -49,6 +49,12 @@ body { color: theme(text-primary); } +// Fixes this bug in DEV mode: +// https://stackoverflow.com/questions/70499543/create-react-app-creates-this-iframe-that-prevents-me-from-clicking-or-editing +body > iframe { + pointer-events: none; +} + code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 'Ubuntu Mono'; }