Fix content editor in smaller widths

This commit is contained in:
Robin Ward 2013-04-09 11:28:28 -04:00
parent e783891f31
commit 161b8f43b6
2 changed files with 7 additions and 1 deletions

View file

@ -10,7 +10,7 @@
</ul>
</div>
<div class='content-editor span15'>
<div class='content-editor'>
{{outlet}}
</div>
</div>

View file

@ -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;
}