mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
24 lines
444 B
SCSS
24 lines
444 B
SCSS
@media only screen
|
|
and (min-device-width : 320px)
|
|
and (max-device-width : 540px) {
|
|
#reply-control {
|
|
.toggle-preview { display:none; }
|
|
#reply-title { width: 250px; }
|
|
.wmd-controls {
|
|
#wmd-input {
|
|
width: 100%;
|
|
border-top: 0;
|
|
}
|
|
.preview-wrapper {
|
|
display: none;
|
|
}
|
|
.textarea-wrapper {
|
|
width: 100%;
|
|
}
|
|
.wmd-button-bar {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|