Circle.vue
311 Bytes
<template>
<div class="smallcircle2"></div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
.smallcircle2 {
display: block;
width: 12px;
height: 12px;
border-radius: 50%;
opacity: 0.4;
background: radial-gradient(circle at center, red 0, blue, #2277b2 100%);
}
</style>