a wip style that hides the left bar to make it more usable on narrow windows or mobile
mobile friendly whatsapp test by heredos
Details
Authorheredos
LicenseMIT
Categoryweb.whatsapp.com
Created
Updated
Size706 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
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("web.whatsapp.com") {
.two ._aigw {
width: 0;
overflow: scroll;
flex: 0;
}
header:hover + ._aigw {
max-width: 100%;
flex: 100%;
background-color: #000;
}
.two ._aigw:hover {
max-width: 100%;
flex: 100%;
background-color: #000;
}
.two header:nth-of-type(1) {
background-color: #000;
max-height: 100vh;
}
.two div:nth-of-type(4){
max-width: calc(100vw - 64px);
}
}