From ee055052e5d9578264df5f87feb6a0259e202246 Mon Sep 17 00:00:00 2001 From: myeunee Date: Tue, 26 Nov 2024 23:14:23 +0900 Subject: [PATCH] update popup.css --- chrome_extension/manifest.json | 2 +- chrome_extension/styles/popup.css | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/chrome_extension/manifest.json b/chrome_extension/manifest.json index 356ee71..74638aa 100644 --- a/chrome_extension/manifest.json +++ b/chrome_extension/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "PatTurning", "description": "Extension for Dark Pattern Detection", - "version": "1.3", + "version": "2", "permissions": ["activeTab", "storage", "tabs"], "host_permissions": [ "YOUR_DARK_PATTERN_API", diff --git a/chrome_extension/styles/popup.css b/chrome_extension/styles/popup.css index 90e6e43..25e279e 100644 --- a/chrome_extension/styles/popup.css +++ b/chrome_extension/styles/popup.css @@ -102,4 +102,20 @@ body { color: #000000; /* Lighter grey text color */ text-align: center; line-height: 1.5; /* Added line height for better readability */ -} \ No newline at end of file +} + +#label-filters-container { + display: block; + text-align: left; + padding: 20px; + border: 1px solid #ccc; /* optional: border around the whole block */ + border-radius: 5px; /* optional: rounded corners for the block */ + background-color: #f9f9f9; /* optional: background color */ + width: fit-content; /* adjusts width to fit content */ + margin: auto; /* centers the block */ +} + +#label-filters label { + display: block; + margin-bottom: 10px; +}