From 165a89e9467289ed959c61ba0ed7e199975c8a35 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Fri, 7 Mar 2025 15:14:04 +0100 Subject: [PATCH] Use style.css instead of inline styles (#581) --- browser-extension/src/entrypoints/popup/index.html | 2 +- browser-extension/src/entrypoints/popup/style.css | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/browser-extension/src/entrypoints/popup/index.html b/browser-extension/src/entrypoints/popup/index.html index ed9919dcf..eb856c019 100644 --- a/browser-extension/src/entrypoints/popup/index.html +++ b/browser-extension/src/entrypoints/popup/index.html @@ -15,7 +15,7 @@ } - +
diff --git a/browser-extension/src/entrypoints/popup/style.css b/browser-extension/src/entrypoints/popup/style.css index e69de29bb..c8d24c499 100644 --- a/browser-extension/src/entrypoints/popup/style.css +++ b/browser-extension/src/entrypoints/popup/style.css @@ -0,0 +1,3 @@ +body { + font-size: 75%; +}