mirror of https://github.com/zulip/zulip.git
drafts: Space draft message content from restore draft button by 5px.
When the 1st line of a draft message took up the maximum horizontal space possible, the last character was way too close to the pencil icon. More noticeably, when a message began with a code block, it's right edge would touch the icon. To space the message contents and the restore draft button, now a margin of 5px has been added to the draft message content. This makes the message content narrower by 5px.
This commit is contained in:
parent
7f9fccedff
commit
6a4c12b41e
|
@ -108,6 +108,8 @@
|
|||
|
||||
.message_content {
|
||||
grid-column: 1 / 2;
|
||||
/* to space from restore draft button */
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.message_top_line {
|
||||
|
|
Loading…
Reference in New Issue