MediaWiki:Minerva.less/storage.less

From RuneRealm Wiki

This is the current revision of this page, as edited by Alex (talk | contribs) at 00:11, 17 October 2024 (Created page with "→‎Overrides specific to mobile: @media screen and (max-width: 720px) { .inventorytable, .lootingbagtable, .runepouchtable { &.storage-left { margin-right: auto; clear: none; float: none; } &.storage-right { margin-left: auto; clear: none; float: none; } } .runepouchtable { &.storage-center { margin-left: 23px; } &...."). The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

/* Overrides specific to mobile */

@media screen and (max-width: 720px) {

   .inventorytable, .lootingbagtable, .runepouchtable {
       &.storage-left {
           margin-right: auto;
           clear: none;
           float: none;
       }
       &.storage-right {
           margin-left: auto;
           clear: none;
           float: none;
       }
   }
   .runepouchtable {
       &.storage-center {
           margin-left: 23px;
       }
       &.storage-right {
           margin-left: 23px;
       }
   }
   
   // For Template:Equipment
   .equipment-div, .equipment-div-buttons {
       &.equipment-left {
           margin-right: auto;
           clear: none;
           float: none;
           width: 100%;
       }
       &.equipment-center {
           width: 100%;
       }
       &.equipment-right {
           margin-left: auto;
           clear: none;
           float: none;
           width: 100%;
       }
   }

}