This commit is contained in:
Devine Lu Linvega
2018-08-03 13:48:16 +12:00
parent 72098a65f9
commit 2937006bdd
6 changed files with 22 additions and 60 deletions

View File

@@ -46,11 +46,11 @@ function Guide()
this.resize = function(size)
{
var offset = 30
var offset = 15
this.el.width = (size.width+offset)*this.scale;
this.el.height = (size.height+offset)*this.scale;
this.el.height = (size.height+(offset*2))*this.scale;
this.el.style.width = (size.width+offset)+"px";
this.el.style.height = (size.height+offset)+"px";
this.el.style.height = (size.height+(offset*2))+"px";
this.refresh();
}