Skip to content

Commit b3ec732

Browse files
committedOct 5, 2024··
style(ui): move GitHub to bottom
Signed-off-by: Neko Ayaka <[email protected]>
1 parent 4e532f5 commit b3ec732

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed
 

‎app/layouts/default.vue

+5-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@
1616
<span i-carbon-download inline-block />
1717
Receive
1818
</NuxtLink>
19-
20-
<a href="https://github.com/qqrss/qrs" target="_blank" op70 hover="text-blue" duration-300 transition="all ease-in-out" flex="~ items-center gap-1">
21-
<span i-carbon:logo-github inline-block /><span>GitHub</span>
22-
</a>
2319
</div>
2420
</div>
2521
<slot />
22+
<div flex flex-col items-center px-4 py-2>
23+
<a href="https://github.com/qqrss/qrs" target="_blank" op70 hover="text-blue" duration-300 transition="all ease-in-out" flex="~ items-center gap-1">
24+
<span i-carbon:logo-github inline-block /><span>GitHub</span>
25+
</a>
26+
</div>
2627
</main>
2728
</template>

‎app/pages/index.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async function onFileChange(file?: File) {
8282
</div>
8383
<InputFile
8484
v-else
85-
min-h="[calc(100vh-250px)]" h-full w-full
85+
min-h="[calc(100vh-290px)] sm:[calc(100vh-240px)]" h-full w-full
8686
text="neutral-600 dark:neutral-400"
8787
@file="onFileChange"
8888
/>

‎app/pages/scan.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const throttledFps = useDebounce(fps, 500)
55
</script>
66

77
<template>
8-
<div px-4 pt-4 space-y-4>
8+
<div px-4 pt-4 space-y-4 min-h="[calc(100vh-160px)]">
99
<div w-full inline-flex flex-row items-center>
1010
<span min-w-40>
1111
<span pr-2 text-zinc-400>Ideal scans</span>

0 commit comments

Comments
 (0)
Please sign in to comment.