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:
PascalMarchesseault
2025-02-13 16:56:57 -05:00
parent 5de745384d
commit f01f465b59
2 changed files with 11 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ const isCurrentCreator = computed(() => {
<style scoped>
.banner {
border-bottom: 6px solid var(--h-tertiary);
border-bottom: 5px solid var(--h-tertiary);
}
</style>

View File

@@ -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>