From f1566d555d1da145d64f93f0b2aecc974777c3d7 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 23 Dec 2019 11:11:19 -0500 Subject: [PATCH] [F] Screen too big cases --- src/responsive.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/responsive.ts b/src/responsive.ts index 55b2a5d..1a03436 100644 --- a/src/responsive.ts +++ b/src/responsive.ts @@ -26,6 +26,9 @@ export default class Responsive // Return block width if (blockWidth > this.minWidth && blockWidth < this.maxWidth) return blockWidth; }); + + // Screen too big + return this.maxWidth; } }