summaryrefslogtreecommitdiffstats
path: root/src/components/feed-display/ItemSkeleton.vue
blob: 8762df9712658ce17ea10ef676107aff191b9882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!--
  - Copyright (c) 2020. The Nextcloud Bookmarks contributors.
  -
  - This file is licensed under the Affero General Public License version 3 or later. See the COPYING file.
  -->

<template>
	<div class="item-skeleton">
		<div class="item__labels" />
		<div class="item__actions" />
	</div>
</template>

<script>
import Vue from 'vue'

export default Vue.extend({
	name: 'ItemSkeleton',
	components: {
	},
	computed: {

	},
})
</script>

<style>
.item-skeleton {
	background: 'var(--color-placeholder-dark)';
	height: '45px';
}
</style>