Fixes the Voila modal overflow on Firefox Mobile Portrait Mode. The devs didn't fix it after all this time. It was a simple fix.
Voila Fix by loki
Details
Authorloki
LicenseCC Zero
CategoryGlobal
Created
Updated
Size345 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Use Firefox Beta or Nightly to use custom add-on collection with Voila Addon.
Steps
- Enable debug mode by tapping on firefox logo 5 times in the about section in the settings
- Add addon collection with voila and stylus in custom addon collection
- Install Stylus
- Install this user-style
It's better if you create your own collection with addons you like but if you'd like here's an addon collection ID with Stylus/Voila already in the list: 5473512
Source code
/* ==UserStyle==
@name Voila Fix
@version 2024.02.16
@namespace voila-fix
@author loki
==/UserStyle== */
@-moz-document url-prefix(http://), url-prefix(https://) {
@media (max-width: 480px){
.Voila__Modal {
min-width: 100vw !important;
width: unset !important;
}
}
}