fix(composer): fix minor spacing issue on popout composer

This commit is contained in:
Evan Morikawa 2016-03-02 16:06:40 -08:00
parent b727fe374d
commit 572498aa68

View file

@ -247,12 +247,16 @@ body.platform-win32 {
.quoted-text-control { .quoted-text-control {
margin: @spacing-standard; margin: @spacing-standard;
margin-top: 10px; // The quoted-text-control has no top margin since the
// div[contentedtiable] has 10px of bottom padding. It's better to
// put the padding on the contenteditable so the bottom looks nice
// in popout windoes when there's no quoted text control.
margin-top: 0;
} }
div[contenteditable] { div[contenteditable] {
min-height: @compose-min-height; min-height: @compose-min-height;
padding: 20px @spacing-standard 0 @spacing-standard; padding: 20px @spacing-standard 10px @spacing-standard;
} }
} }