Skip to content

Commit

Permalink
Merge pull request #21 from shweshi/dev
Browse files Browse the repository at this point in the history
service worker cache and fix scrollbar
  • Loading branch information
shweshi authored Apr 19, 2021
2 parents 829ad0d + 73f9619 commit 6a572a2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions src/css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
html {
padding: 0px;
margin: 0px;
}

body {
overflow: hidden;
}

.body {
overflow-y: hidden;
}
Expand Down Expand Up @@ -154,20 +163,14 @@ a:visited {
}

#text::-webkit-scrollbar {
width: 15px;
width: 12px;
background-color: #f1f1f1;
}

#text::-webkit-scrollbar-thumb {
background-color: #c1c1c1;
}

body,
html {
padding: 0px;
margin: 0px;
}

input[type="file"] {
display: none;
}
2 changes: 1 addition & 1 deletion src/sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var cacheName = 'editpad';
var cacheName = 'editpad-v1';
var filesToCache = [
'/',
'/index.html',
Expand Down

0 comments on commit 6a572a2

Please sign in to comment.