mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
Fix content editor in smaller widths
This commit is contained in:
parent
e783891f31
commit
161b8f43b6
2 changed files with 7 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
</ul>
|
||||
</div>
|
||||
|
||||
<div class='content-editor span15'>
|
||||
<div class='content-editor'>
|
||||
{{outlet}}
|
||||
</div>
|
||||
</div>
|
|
@ -588,6 +588,12 @@ table {
|
|||
.content-editor {
|
||||
min-height: 500px;
|
||||
|
||||
float: left;
|
||||
width: 760px;
|
||||
@include medium-width { width: 650px; }
|
||||
@include small-width { width: 600px; }
|
||||
margin-left: 20px;
|
||||
|
||||
p.description {
|
||||
color: $dark_gray;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue