Skip to content

Commit

Permalink
CSS tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
TimCsaky committed Nov 15, 2023
1 parent 74f5ba2 commit 257fd10
Show file tree
Hide file tree
Showing 17 changed files with 297 additions and 615 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ WORKDIR ${APP_ROOT}
# Install Application
RUN chown -R 1001:0 ${APP_ROOT}
USER 1001
WORKDIR ${APP_ROOT}/app
RUN npm ci --omit=dev

EXPOSE ${APP_PORT}
CMD ["npm", "run", "start"]
CMD ["node", "-r", "ts-node/register", "./bin/www"]
197 changes: 64 additions & 133 deletions app/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/compression": "^1.7.5",
"@types/config": "^3.3.3",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.9.0",
"api-problem": "^9.0.2",
"axios": "^1.5.1",
"compression": "^1.7.4",
Expand All @@ -38,13 +45,6 @@
"winston-transport": "^4.6.0"
},
"devDependencies": {
"@types/compression": "^1.7.4",
"@types/config": "^3.3.2",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^18.18.1",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
Expand Down
8 changes: 4 additions & 4 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"pinia-plugin-persistedstate": "^3.2.0",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primevue": "~3.34.1",
"primevue": "^3.40.1",
"qrcode.vue": "^3.4.1",
"vee-validate": "^4.11.8",
"vue": "^3.3.7",
Expand Down
35 changes: 24 additions & 11 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,28 @@ onErrorCaptured((e: Error) => {
</script>

<template>
<ConfirmDialog />
<ProgressLoader v-if="getIsLoading" />
<Toast />
<AppLayout>
<template #nav>
<Navbar />
</template>
<template #main>
<RouterView v-if="ready" />
</template>
</AppLayout>
<div class="container">
<ConfirmDialog />
<ProgressLoader v-if="getIsLoading" />
<Toast />

<AppLayout>
<template #nav>
<Navbar />
</template>
<template #main>
<RouterView v-if="ready" />
</template>
</AppLayout>
</div>
</template>

<style scoped>
.container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
width: 100%;
}
</style>
86 changes: 0 additions & 86 deletions frontend/src/assets/base.css

This file was deleted.

Loading

0 comments on commit 257fd10

Please sign in to comment.