Greasy Fork is available in English.

Melvor Idle - Fixed Bank Icons

Make bank icons all the same size while respecting their aspect ratio

/* ==UserStyle==
@name           Melvor Idle - Fixed Bank Icons
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Make bank icons all the same size while respecting their aspect ratio
@author         Visua
@preprocessor   stylus

@var            text iconSize       "Icon size"       38px
@var            text marginImg      "margin"          6px
@var            text marginBottom   "margin-bottom"   27px
@var            text quantityOffset "Quantity offset" 9px
==/UserStyle== */
@-moz-document domain("melvoridle.com") {
    .bank-img-old {
        height: iconSize;
        width: iconSize;
        max-height: unset;
        max-width: unset;
        object-fit: contain;
        margin: marginImg;
        margin-bottom: marginBottom;
    }

    #bank-item-container > div {
        position: relative;
    }

    .bank-img-old + div {
        position: absolute;
        bottom: quantityOffset;
        left: 0;
        right: 0;
    }
}