diff options
author | 2023-04-20 20:49:28 +0200 | |
---|---|---|
committer | 2023-04-20 20:57:38 +0200 | |
commit | f080933d2a6f03ef54d40b57175a1bea276df675 (patch) | |
tree | d4c0abf43da4ea910f13c1f5b4a765279d6491dc /src/tools/keycode-info/keycode-info.vue | |
parent | bb32513bd34948b0f0a3d739c41bda303d01cf89 (diff) | |
download | it-tools-f080933d2a6f03ef54d40b57175a1bea276df675.tar.gz it-tools-f080933d2a6f03ef54d40b57175a1bea276df675.tar.zst it-tools-f080933d2a6f03ef54d40b57175a1bea276df675.zip |
refactor(ui): replaced naive ui cards with custom ones
Diffstat (limited to 'src/tools/keycode-info/keycode-info.vue')
-rw-r--r-- | src/tools/keycode-info/keycode-info.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/keycode-info/keycode-info.vue b/src/tools/keycode-info/keycode-info.vue index 169117a..bc11667 100644 --- a/src/tools/keycode-info/keycode-info.vue +++ b/src/tools/keycode-info/keycode-info.vue @@ -1,9 +1,9 @@ <template> <div> - <n-card style="text-align: center; padding: 40px 0; margin-bottom: 26px"> + <c-card style="text-align: center; padding: 40px 0; margin-bottom: 26px"> <n-h2 v-if="event">{{ event.key }}</n-h2> <n-text strong depth="3">Press the key on your keyboard you want to get info about this key</n-text> - </n-card> + </c-card> <n-input-group v-for="({ label, value, placeholder }, i) of fields" :key="i" style="margin-bottom: 5px"> <n-input-group-label style="flex: 0 0 150px"> {{ label }} </n-input-group-label> |