discourse/app/assets/stylesheets/application/mobile.scss

24 lines
444 B
SCSS
Raw Normal View History

2013-02-25 11:42:20 -05:00
@media only screen
and (min-device-width : 320px)
2013-02-20 20:06:58 -05:00
and (max-device-width : 540px) {
#reply-control {
.toggle-preview { display:none; }
#reply-title { width: 250px; }
.wmd-controls {
#wmd-input {
width: 100%;
2013-02-25 11:42:20 -05:00
border-top: 0;
}
.preview-wrapper {
display: none;
}
.textarea-wrapper {
width: 100%;
}
.wmd-button-bar {
display: none;
}
}
}
}