feat: change Avatar id to class
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-07-15 11:31:11 +02:00
parent 32910d2077
commit 07fa883a14
No known key found for this signature in database
GPG key ID: 6AD2337BB02E657B

View file

@ -1,6 +1,6 @@
<template> <template>
<NuxtImg v-if="displayAvatar" <NuxtImg v-if="displayAvatar"
id="display-avatar" class="display-avatar"
:src="displayAvatar" :src="displayAvatar"
:alt="displayName" /> :alt="displayName" />
<Icon v-else <Icon v-else
@ -40,7 +40,7 @@ if (user) {
</script> </script>
<style scoped> <style scoped>
#display-avatar { .display-avatar {
border-radius: var(--pfp-radius); border-radius: var(--pfp-radius);
} }
</style> </style>