Skip to content
Snippets Groups Projects

Translations update from Weblate

Closed Weblate Push User requested to merge weblate into master
2 files
+ 61
1
Compare changes
  • Side-by-side
  • Inline
Files
2
<template>
<v-dialog
v-model="overlay"
max-width="fit-content"
>
<template v-slot:activator="{ on, attrs }">
<v-card class="rounded-circle">
<v-responsive :aspect-ratio="1"
v-bind="attrs"
v-on="on">
<AvatarContent :id="id" class="rounded-circle"/>
</v-responsive>
</v-card>
</template>
<v-sheet class="d-flex justify-center align-center flex-column text-center transparent">
<AvatarContent :id="id" contain class="inDialog"/>
</v-sheet>
</v-dialog>
</template>
<script>
import AvatarContent from "./AvatarContent.vue";
export default {
name: "AvatarClickBox",
components: {AvatarContent},
data: () => ({
overlay: false,
}),
props: {
id: {
type: String,
required: false,
}
}
}
</script>
<style scoped>
.inDialog {
height: 80vmin;
width: 80vmin;
aspect-ratio: 1;
}
</style>
Loading