Files
kunshan-bzfm-mes-vue/src/views/SmartScreen/DeviceScreen/components/logo.vue
2024-12-04 17:33:21 +08:00

40 lines
622 B
Vue

<template>
<div class="box">
<div class="row-box">
<img class="logo" :src="imgUrl" />
<span class="text">北泽阀门</span>
</div>
</div>
</template>
<script setup>
import imgUrl from '@/assets/logo/logo.png'
</script>
<style scoped>
.box {
position: absolute;
left: 1%;
top: 10px;
}
.row-box {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.logo {
width: 40px;
height: 40px;
}
.text {
margin-left: 10px;
text-align: center;
/* line-height: 25px; */
font-size: 24px;
}
</style>