[O] Reduce padding amout

This commit is contained in:
Hykilpikonna
2019-12-25 08:40:41 -05:00
parent 53aef1b0d4
commit 2ea959cc5d
+1 -1
View File
@@ -50,7 +50,7 @@ export default class Responsive
getBlockWidth(currentWidth: number = document.documentElement.clientWidth)
{
let count = this.getNumberOnScreen(currentWidth);
return (currentWidth - vhToPx(this.margin) * count * 2) / count - 5;
return (currentWidth - vhToPx(this.margin) * count * 2) / count - 1;
}
}