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

27 lines
434 B
Vue
Raw Normal View History

2024-11-16 23:04:02 -05:00
<template>
<div class="qr-code">
<span class="grid">QR</span>
<span class="uuid">1337-9339</span>
</div>
</template>
<style scoped>
.grid {
font-size: 200%;
}
.qr-code {
align-items: center;
background-color: white;
display: flex;
flex-direction: column;
height: 80px;
justify-content: center;
width: 80px;
}
.uuid {
color: rgba(51, 51, 51, 0.91);
font-size: 90%;
font-family: monospace;
}
</style>