Files
buildpath/frontend/components/Logo.vue

19 lines
495 B
Vue

<template>
<div style="width: fit-content;">
<RouterLink style="display: flex; width: fit-content; text-decoration: none;" to="/">
<img width="140" src="~/assets/img/buildpath-high-resolution-logo-transparent.png" />
<h1 id="logo-text" style="">BuildPath</h1>
</RouterLink>
</div>
</template>
<style>
#logo-text {
font-weight: 200;
align-content: center;
font-size: 90px;
margin-left: 20px;
user-select: none;
text-decoration: none;
}
</style>