Skip to content

Commit 75d6cfb

Browse files
committedJul 1, 2024··
Some tiny css tweaks for the 0.6.1f release
Using innerHeight instead of outer, and getting rid of a white border that showed up in testing.
1 parent 8939668 commit 75d6cfb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎web/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ return {
5959
{
6060
// reset zoom
6161
var canvas = document.getElementById('canvas');
62-
var width = window.innerWidth - 12;
63-
var height = window.outerHeight - 12;
62+
var width = window.innerWidth - 10;
63+
var height = window.innerHeight - 10;
6464
Main.scaleCanvas(canvas, width, height);
6565
Main.alignInvisibleClick(canvas);
6666
},

‎web/sw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
var _cacheName = 'cimbar-js-v0.6.0';
2+
var _cacheName = 'cimbar-js-v0.6.1';
33
var _cacheFiles = [
44
'/',
55
'/index.html',

0 commit comments

Comments
 (0)
Please sign in to comment.