mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-10 23:15:00 +08:00
fix(composer): fix minor spacing issue on popout composer
This commit is contained in:
parent
b727fe374d
commit
572498aa68
1 changed files with 6 additions and 2 deletions
|
@ -247,12 +247,16 @@ body.platform-win32 {
|
|||
|
||||
.quoted-text-control {
|
||||
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] {
|
||||
min-height: @compose-min-height;
|
||||
padding: 20px @spacing-standard 0 @spacing-standard;
|
||||
padding: 20px @spacing-standard 10px @spacing-standard;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue