fix(front): make profile (channel) image styles global

This commit is contained in:
ArneBo 2025-01-21 21:27:37 +01:00
parent c57b47bdd3
commit 1a2118fdcf
3 changed files with 3 additions and 13 deletions

View File

@ -268,11 +268,6 @@ const remove = async () => {
</template> </template>
<style scopen> <style scopen>
.channel-image {
width: 300px;
height: 300px;
border: none;
}
.meta { .meta {
line-height: 48px; line-height: 48px;
} }

View File

@ -353,11 +353,6 @@ watch(showDeleteModal, (newValue) => {
</template> </template>
<style scoped> <style scoped>
.channel-image {
width: 300px;
height: 300px;
border: none;
}
.meta { .meta {
line-height: 48px; line-height: 48px;
} }

View File

@ -113,9 +113,9 @@
} }
} }
.channel-image { .channel-image {
border: 1px solid rgba(0, 0, 0, 0.15); width: 300px;
background-color: white; height: 300px;
border-radius: 0.3em;
&.large { &.large {
width: 8em !important; width: 8em !important;
} }