Files
kunshan-bzfm-mes-vue/src/views/SmartScreen/DeviceScreen/components/logo.vue

40 lines
622 B
Vue
Raw Normal View History

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