1
0
Fork 0
activist/src/components/QRCode.vue

23 lines
401 B
Vue
Raw Normal View History

<script setup lang="ts">
import QRCodeImage from './QRCodeImage.vue';
</script>
2024-11-16 23:04:02 -05:00
<template>
<div class="qr-code">
<QRCodeImage class="qr-code-image" />
<!-- <span class="uuid">1337-9339</span>-->
2024-11-16 23:04:02 -05:00
</div>
</template>
<style scoped>
.qr-code {
aspect-ratio: 1 / 1;
2024-11-16 23:04:02 -05:00
background-color: white;
}
.uuid {
color: rgba(51, 51, 51, 0.91);
font-size: 90%;
font-family: monospace;
}
</style>