Создала переменные, добавила логотип

This commit is contained in:
Daria Golova
2022-09-30 18:29:29 +03:00
parent 099227fb59
commit 32f5ba806b
5 changed files with 53 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
<template lang="pug">
div.header-wrapper.flex
img(src="../../assets/images/logo.svg")
</template>
<script>
export default {
name: 'HeaderComponent',
}
</script>
<style lang="sass">
@import "../../assets/sass/variables.sass"
.header-wrapper
width: auto
padding: 8px 24px
background-color: $bg-white-color
.flex
display: flex
</style>