An userstyle to increase the vertical height of the view box of the interactive map.
Fandom Interactive Map Larger Viewbox by qstar-inc
Details
Authorqstar-inc
LicenseNo License
Categoryfandom.com -> Maps
Created
Updated
Size520 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 Fandom Interactive Map Larger Viewbox
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A userstyle to increase the view box of the interactive map.
@author qstar_inc
==/UserStyle== */
@-moz-document domain("fandom.com") {
@media only screen and (min-width: 1280px) {
.interactive-maps-container {
--interactive-map-container-size: 90vh;
}
.interactive-maps-container .interactive-maps__map {
height: calc(90vh - 85px);
}
}
}