Skip to content

Commit

Permalink
Update PrimeVue to 3.42.0
Browse files Browse the repository at this point in the history
CSS updates in line with other applications
  • Loading branch information
kyle1morel committed Dec 4, 2023
1 parent 57469a6 commit 47b303a
Show file tree
Hide file tree
Showing 16 changed files with 307 additions and 529 deletions.
7 changes: 4 additions & 3 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.42.0",
"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 47b303a

Please sign in to comment.