Files
lilishop-ui/seller/src/views/main-components/header.vue
2021-05-13 10:56:04 +08:00

28 lines
385 B
Vue

<template>
<div>
<Row class="header">
<img src="../../assets/lili.png" class="logo" width="220px">
</Row>
</div>
</template>
<script>
export default {
name: "header",
};
</script>
<style lang="scss" scoped>
.header {
margin-bottom: 6vh;
align-items: center;
display: flex;
justify-content: center !important;
}
.logo {
transform: scale(3);
}
</style>