[Bug] Fix ReadableTime overlapping message text in Firefox(#219)

This commit is contained in:
Ronald Walker 2019-11-18 23:25:12 -08:00 committed by Pranav Raj S
parent 565a8439c0
commit 0d5c070f51
2 changed files with 3 additions and 7 deletions

View file

@ -320,7 +320,6 @@
font-size: $font-size-micro;
font-style: italic;
margin-left: $space-slab;
position: absolute;
right: -$space-micro;
text-align: right;
}

View file

@ -1,15 +1,12 @@
<template>
<span class="message-text__wrap">
<span v-html="message" class="message-text"></span>
<span class="time">{{readableTime}}</span>
<span class="time">{{ readableTime }}</span>
<span v-html="message"></span>
</span>
</template>
<script>
export default {
props: [
'message',
'readableTime',
],
props: ['message', 'readableTime'],
};
</script>