Commit 6c0add67 authored by Fatih Acet's avatar Fatih Acet

IssueNotesRefactor: Fix bottom padding inconsistency of reply form.

parent 200cc4f1
......@@ -173,7 +173,9 @@
/>
</ul>
<div class="flash-container"></div>
<div class="discussion-reply-holder">
<div
:class="{ 'is-replying': isReplying }"
class="discussion-reply-holder">
<button
v-if="canReply && !isReplying"
@click="showReplyForm"
......
......@@ -198,6 +198,10 @@
.discussion-reply-holder {
background-color: $white-light;
padding: 10px 16px;
&.is-replying {
padding-bottom: $gl-padding;
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment