Removes the empty marginal spacing added by Whatsapp on screens wider than 1441px, ensuring that the full width and height is used
Whatsapp - Full width and height on large screens by lodewykk
Details
Authorlodewykk
LicenseNo License
Categoryweb.whatsapp.com
Created
Updated
Size660 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name web.whatsapp.com - Use full width and height on large screens
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Removes the empty marginal spacing added by Whatsapp on screens wider than 1441px, ensuring that the full width and height is used
@author lodewykk
==/UserStyle== */
@-moz-document url-prefix("https://web.whatsapp.com/") {
.app-wrapper-web ._aigs {
top: unset !important;
height: 100% !important;
width: 100% !important;
/* A custom max width can be set here. Initial value is 1700px. */
max-width: unset;
}
}