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; } }