Skip to content

Commit

Permalink
update popup.css
Browse files Browse the repository at this point in the history
  • Loading branch information
myeunee committed Nov 26, 2024
1 parent 9c3877c commit ee05505
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome_extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
18 changes: 17 additions & 1 deletion chrome_extension/styles/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,20 @@ body {
color: #000000; /* Lighter grey text color */
text-align: center;
line-height: 1.5; /* Added line height for better readability */
}
}

#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;
}

0 comments on commit ee05505

Please sign in to comment.