Skip to content

Commit

Permalink
Fix self-closing component spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
CedrikNikita committed May 25, 2020
1 parent 9b1866e commit 7f61b37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
8 changes: 2 additions & 6 deletions src/components/layout/sendTip/SendTip.vue
@@ -1,7 +1,5 @@
<template>
<div
class="tip__post"
>
<div class="tip__post">
<div v-if="open && !error && !success">
<div class="tip__post__label clearfix">
<img
Expand Down Expand Up @@ -40,9 +38,7 @@
>
</div>
<div class="col-lg-4 col-md-5 col-sm-12 send-amount">
<AeInputAmount
v-model="sendTipForm.amount"
/>
<AeInputAmount v-model="sendTipForm.amount" />
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<div class="text-right">
Expand Down
4 changes: 1 addition & 3 deletions src/views/TipCommentsView.vue
Expand Up @@ -14,9 +14,7 @@
<p class="latest__comments">
{{ $t('views.TipCommentsView.LatestReplies') }}
</p>
<SendComment
:tip-id="tip.id"
/>
<SendComment :tip-id="tip.id" />
</div>
<div class="comments__section">
<div
Expand Down

0 comments on commit 7f61b37

Please sign in to comment.