This commit is contained in:
Egor Aristov 2025-03-11 13:23:26 +03:00
parent fa5dd0c26f
commit 49155f5c38
2 changed files with 18 additions and 1 deletions

View File

@ -3,9 +3,26 @@ import { RouterView } from 'vue-router'
</script>
<template>
<div id="header">
<div id="logo">
<img src="./assets/logo.png" alt="logo"/>
</div>
</div>
<RouterView />
</template>
<style scoped>
<style scoped lang="scss">
#header {
display: flex;
flex-flow: row nowrap;
justify-content: center;
margin: 5px 0 10px 0;
#logo {
img {
max-width: 300px;
}
}
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB