Skip to content

Commit

Permalink
Changed border style to !important
Browse files Browse the repository at this point in the history
This change makes it so the justin bahn design principles are more strictly enforced on all elements
  • Loading branch information
bctt authored Nov 9, 2023
1 parent 871c3ab commit f8f36cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
if (value === 'true') {
const elements = document.querySelectorAll('*');
for (element of elements) {
element.style.border = '4px red solid';
element.style.border = '4px red solid !important';
}
localStorage.setItem('state', 'false');
} else {
Expand All @@ -18,4 +18,4 @@
}
}

})();
})();

0 comments on commit f8f36cc

Please sign in to comment.