Added logbox

This commit is contained in:
Leon Etienne (ubuntu wsl)
2020-09-30 15:41:51 +02:00
parent 5e98e31eee
commit 5d04df3422
7 changed files with 109 additions and 3 deletions

View File

@@ -4,9 +4,16 @@
<div class="flex flex-col">
<div class="flex items-end justify-between w-full md:w-auto">
<div class="flex flex-col">
<div class="icon--mode">
<IconFilm v-if="false" />
<IconMusic v-else />
</div>
<div class="timestamp">
20.09.2020
</div>
</div>
<div class="button-remove">
<IconX />
@@ -86,12 +93,20 @@
<script>
import IconDownload from "~/components/Icons/download.vue";
import IconX from "~/components/Icons/x.vue";
import IconFilm from "~/components/Icons/film.vue";
import IconMusic from "~/components/Icons/music-note.vue";
export default {
components: {
IconDownload,
IconX
}
IconX,
IconFilm,
IconMusic
},
props: {
downloadEntry: {type: Object},
},
}
</script>
@@ -262,5 +277,9 @@ export default {
& *::-webkit-scrollbar {
display: none;
}
& .icon--mode {
width: 20px;
}
}
</style>