User:Saag/common.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
Saag (talk | contribs)
No edit summary
Saag (talk | contribs)
No edit summary
Line 1: Line 1:
.navbox {
/* Media query for mobile devices - unhide the element */
    display: table !important;
@media (max-width: 767px) {
    .your-class {
        display: block; /* or inline, flex, etc., depending on your needs */
    }
}
}

Revision as of 10:44, 3 September 2024

/* Media query for mobile devices - unhide the element */
@media (max-width: 767px) {
    .your-class {
        display: block; /* or inline, flex, etc., depending on your needs */
    }
}