[F] Screen too big cases

This commit is contained in:
Hykilpikonna
2019-12-23 11:11:19 -05:00
parent 0051a8a573
commit f1566d555d
+3
View File
@@ -26,6 +26,9 @@ export default class Responsive
// Return block width // Return block width
if (blockWidth > this.minWidth && blockWidth < this.maxWidth) return blockWidth; if (blockWidth > this.minWidth && blockWidth < this.maxWidth) return blockWidth;
}); });
// Screen too big
return this.maxWidth;
} }
} }