Add styling border top and bottom with tertiary color to logo. Change banner border height and colors in main.css
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
>
|
||||
|
||||
<img
|
||||
class="shadow-2xl rounded-full border-solid border-hSecondary border-102 w-[200px] h-[200px]"
|
||||
class="shadow-2xl rounded-full border-solid border-hSecondary border-102 w-[200px] h-[200px] logo-image"
|
||||
:src="brandingStore.value.images?.logo ?? '/images/placeholders/profile.png'"
|
||||
alt="Profile Picture"
|
||||
/>
|
||||
@@ -59,4 +59,12 @@ const isCurrentCreator = computed(() => {
|
||||
return authStore.userId === brandingStore.value.id;
|
||||
});
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.logo-image {
|
||||
border-bottom: 4px solid var(--h-tertiary);
|
||||
border-top: 4px solid var(--h-tertiary);
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user