MediaWiki:Mobile.css: Difference between revisions
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
/* Show footer links that might be hidden by default */ | /* Show footer links that might be hidden by default */ | ||
.minerva .content .footer-places { | /*.minerva .content .footer-places { | ||
display: block; | display: block; | ||
} | } | ||
Line 8: | Line 8: | ||
.minerva .content .footer-places li { | .minerva .content .footer-places li { | ||
display: list-item; | display: list-item; | ||
}*/ | |||
@media screen and (max-width: 768px) { /* Adjust the width as per MinervaNeue's breakpoint */ | |||
.minerva .content .footer-places { | |||
display: block; | |||
} | |||
.minerva .content .footer-places li { | |||
display: list-item; | |||
} | |||
} | } |
Revision as of 08:30, 7 December 2024
/* All CSS here will be loaded for users of the mobile site */ /* Show footer links that might be hidden by default */ /*.minerva .content .footer-places { display: block; } .minerva .content .footer-places li { display: list-item; }*/ @media screen and (max-width: 768px) { /* Adjust the width as per MinervaNeue's breakpoint */ .minerva .content .footer-places { display: block; } .minerva .content .footer-places li { display: list-item; } }