Skip to content

Commit

Permalink
Add Logo Component.
Browse files Browse the repository at this point in the history
  • Loading branch information
keoinn committed Oct 4, 2024
1 parent 728d742 commit 2b45536
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/assets/gaiaLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 51 additions & 1 deletion src/components/AppHeaderLogo.vue
Original file line number Diff line number Diff line change
@@ -1,2 +1,52 @@
<script setup>
import logo_img from '@/assets/gaiaLogo.svg'
</script>

<template>
</template>
<div class="nav-logo">
<div class="group">
<div class="text-wrapper">Gaia Room</div>
<img class="vector" alt="Vector" :src="logo_img" />
</div>
</div>
</template>

<style scoped lang="scss">
.nav-logo {
// box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.5);
height: 50px;
width: 200px;
z-index: 200;
.group {
height: 54px;
position: relative;
top: 25px;
left: 50px;
width: 200px;
z-index: 200;
.text-wrapper {
color: #ffffff;
font-family: "Gilroy-ExtraBold", Helvetica;
font-size: 20px;
font-weight: 800;
left: 50px;
letter-spacing: 2px;
line-height: normal;
position: absolute;
top: 0;
}
.vector {
height: 50px;
left: 0;
position: absolute;
top: 4px;
width: 50px;
}
}
}
</style>
1 change: 1 addition & 0 deletions src/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<template>
<v-app>
<v-main>
<AppHeaderLogo />
<AppHeader />
<!-- <AppNavigation /> -->
<router-view />
Expand Down

0 comments on commit 2b45536

Please sign in to comment.