mNo edit summary |
mNo edit summary |
||
Line 3: | Line 3: | ||
/* Mobile phone */ | /* Mobile phone */ | ||
@media all and (max-width: 719px) { | @media all and (max-width: 719px) { | ||
/* User board */ | /* User board */ | ||
.user-board-message { | .user-board-message { | ||
Line 34: | Line 29: | ||
width: auto !important; | width: auto !important; | ||
display: block !important; | display: block !important; | ||
} | } | ||
} | } |
Latest revision as of 09:21, August 20, 2024
/* Responsive CSS applied to both desktop and mobile */
/* Mobile phone */
@media all and (max-width: 719px) {
/* User board */
.user-board-message {
width: auto !important;
}
.user-page-message-form textarea {
width: 100% !important;
}
/* Template:Columns */
.columns {
column-count: auto !important;
}
/* Template:Ref/List */
.reflist {
column-count: 1 !important;
}
/* Template:Notice */
.notice {
min-width: 0 !important;
max-width: none !important;
}
.notice-wrapper {
width: auto !important;
display: block !important;
}
}
/* Desktop/tablet */
@media all and (min-width: 720px) {
/* User profile */
#user-page-left > .profile-info-container > div {
width: 50%;
float: left;
}
}