Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 9334fe9

Browse files
authored
Merge pull request #874 from roiLeo/fix/EmotionList/whitespace
fix(EmotionList): remove spacing before title
2 parents 09ffb49 + d6848b4 commit 9334fe9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/rmrk/Gallery/EmotionList.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="columns is-mobile is-multiline is-gapless nft-emotion__main mb-4" v-show="emotes">
2+
<div class="columns is-mobile is-multiline is-gapless nft-emotion__main" v-show="emotes">
33
<div
44
class="column nft-emotion__column"
55
v-for="emoji in emotes"
@@ -14,7 +14,7 @@
1414
</template>
1515

1616
<script lang="ts" >
17-
import { Component, Prop, Vue, Watch } from 'vue-property-decorator'
17+
import { Component, Prop, Vue } from 'vue-property-decorator'
1818
import { Emotion } from '../service/scheme'
1919
2020
const issuerId = (emotion: Emotion) => emotion.issuer
@@ -59,6 +59,7 @@ export default class EmotionList extends Vue {
5959
}
6060
6161
#emoji-box {
62+
margin-bottom: 1rem;
6263
border: 2px solid $primary;
6364
}
6465
</style>

0 commit comments

Comments
 (0)