User:TF2CutContent/common.css: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
m (do i need to set !important on this shit for it to work, or does this just not work over on this wiki?)
Line 5: Line 5:
@media screen {
@media screen {
   .catlinks {
   .catlinks {
     height: auto;
     height: auto !important;
   }
   }
}
}

Revision as of 08:26, 23 November 2023

/**
 * Fix for category links overflowing out of the box.
 * Who the hell decided to set a height of 19px on this element on screens?
 */
@media screen {
  .catlinks {
    height: auto !important;
  }
}