2022-05-05 23:09:28 +00:00
|
|
|
<template>
|
2022-05-19 17:52:08 +00:00
|
|
|
<div>
|
2022-05-19 19:14:17 +00:00
|
|
|
<community-card />
|
2022-05-19 17:52:08 +00:00
|
|
|
<div
|
|
|
|
v-if="
|
|
|
|
!($store.state.tweaks.roundThumb && $store.state.tweaks.roundTweak > 0)
|
|
|
|
"
|
|
|
|
class="separator-bottom background"
|
|
|
|
:class="$vuetify.theme.dark ? 'lighten-1' : 'darken-1'"
|
|
|
|
style="height: 4px"
|
|
|
|
></div>
|
|
|
|
</div>
|
2022-05-05 23:09:28 +00:00
|
|
|
</template>
|
2022-05-19 19:14:17 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
import communityCard from "../../components/communityCard.vue";
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
communityCard,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|