From 1fcbe7b968fbcfa6c8d8983f3e07764ee9b22e05 Mon Sep 17 00:00:00 2001 From: michivonah Date: Fri, 8 Nov 2024 20:23:34 +0100 Subject: [PATCH] fix issue #1 changes regarding PR #2 by @FrissBrot --- chrome/popup.html | 3 +-- chrome/popup.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/chrome/popup.html b/chrome/popup.html index c0bd1d7..fe75e40 100644 --- a/chrome/popup.html +++ b/chrome/popup.html @@ -7,7 +7,7 @@ background: #D6AFF2; color: #000; width: auto; - min-width: 120px; + min-width: 140px; height: auto; --light: #D6AFF2; --dark: #c791ed; @@ -23,7 +23,6 @@ display: flex; flex-direction: column; justify-content: center; - align-content: baseline; align-items: center; } diff --git a/chrome/popup.js b/chrome/popup.js index 89d5543..4c3c279 100644 --- a/chrome/popup.js +++ b/chrome/popup.js @@ -38,7 +38,7 @@ function updateRecordingLabel(bool){ action: "guideLenght" }, (response) => { if(response.stepCount !== 0) startLabel = "Resume"; - toggleRecordingBtn.textContent = bool ? "Pause/Stop" : startLabel; + toggleRecordingBtn.textContent = bool ? "Pause/Stop recording" : startLabel; }); } catch(error){