You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
313 B
21 lines
313 B
2 months ago
|
<template>
|
||
|
<div class="main">
|
||
|
℃
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style scoped >
|
||
|
.main{
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
color: #fff;
|
||
|
border: 1px solid #d83fce;
|
||
|
border-left: 3px solid #d83fce;
|
||
|
line-height: 20px;
|
||
|
}
|
||
|
</style>
|