Add styling border with tertiary color
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
@click="isCurrentCreator && openBannerEditor()"
|
||||
>
|
||||
<img
|
||||
class="drop-shadow-[0_10px_6px_rgba(0,0,0,0.25)] w-[1024px] h-[256px]"
|
||||
class="drop-shadow-[0_10px_6px_rgba(0,0,0,0.25)] w-[1024px] h-[256px] banner"
|
||||
:src="brandingStore.value?.images?.banner ?? '/images/placeholders/banner.png'"
|
||||
alt="Profile Banner"
|
||||
>
|
||||
@@ -60,4 +60,11 @@ const isCurrentCreator = computed(() => {
|
||||
return authStore.userId === brandingStore.value.id;
|
||||
});
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.banner {
|
||||
border-bottom: 6px solid var(--h-tertiary);
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user