Skip to content

Commit

Permalink
Merge pull request #14 from Ecalzo/overlay-css-hotfix
Browse files Browse the repository at this point in the history
fix: fix bug where Skater won't overlay some web pages due to css con…
  • Loading branch information
Ecalzo authored Dec 19, 2020
2 parents e25113d + b3da365 commit 1853223
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"name": "Skater",
"description": "Spotlight-like extension for Chrome bookmarks",
"version": "1.1.6",
"version": "1.1.7",
"icons": {
"16": "images/icon16.png",
"24": "images/icon24.png",
Expand Down
2 changes: 1 addition & 1 deletion src/htmlUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function createOverlay() {

function createOverlayDiv () {
const overlayDiv = document.createElement('div');
overlayDiv.style = "display:flex; align-item: center; justify-content: center;"
overlayDiv.style = "position: fixed; left: 0; top: 0; width: 100%; height: 100%; display:flex; align-item: center; justify-content: center; background: rgba(204, 204, 204, 0.3); z-index:2147483647;"
overlayDiv.id = "skater-overlay"
return overlayDiv
}
Expand Down

0 comments on commit 1853223

Please sign in to comment.