diff --git a/.vscode/launch.json b/.vscode/launch.json index f6453535..cc84991c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,17 @@ "version": "0.2.0", "configurations": [ { - "name": "Launch file", + "name": "Launch UI", + "type": "node", + "request": "launch", + "program": "${workspaceFolder}/ui/node_modules/.bin/nuxt", + "args": ["dev"], + "skipFiles": [ + "/**" + ] + }, + { + "name": "Launch Server", "type": "go", "request": "launch", "mode": "debug", diff --git a/ui/app.config.ts b/ui/app.config.ts index 884a7b76..7317309c 100644 --- a/ui/app.config.ts +++ b/ui/app.config.ts @@ -2,5 +2,11 @@ export default defineAppConfig({ ui: { primary: 'slate', gray: 'cool', + + card: { + body: { + padding: 'px-1 py-1 sm:p-2' + } + } }, }) diff --git a/ui/app.vue b/ui/app.vue index cb24eaf3..ab1ee05b 100644 --- a/ui/app.vue +++ b/ui/app.vue @@ -1,17 +1,9 @@