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.

27 lines
465 B

<template>
<div class="main"></div>
</template>
<script setup>
import { ref, computed, nextTick, watch, onMounted } from "vue";
</script>
<style scoped>
.main {
position: relative;
width: 0;
height: 0;
border-style: solid;
border-width: 20px 0 20px 34.6px;
border-color: transparent transparent transparent #c5d646;
}
.main::after {
content: "÷";
display: block;
position: absolute;
top: -15px;
left: -30px;
font-size: 22px;
}
</style>