We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52bb369 commit e1cde59Copy full SHA for e1cde59
app/components/Generate.vue
@@ -31,7 +31,7 @@ onMounted(() => {
31
block.value = data
32
const binary = blockToBinary(data)
33
const str = fromUint8Array(binary)
34
- svg.value = renderSVG(str, { border: 1 })
+ svg.value = renderSVG(str, { border: 5 })
35
const now = performance.now()
36
renderTime.value = now - frame
37
frame = now
@@ -65,6 +65,7 @@ onMounted(() => {
65
<div relative w-full>
66
<div
67
class="aspect-square [&>svg]:h-full [&>svg]:w-full"
68
+
69
h-full w-full overflow-hidden rounded="~ sm:lg"
70
v-html="svg"
71
/>
0 commit comments