Skip to content

Commit

Permalink
fix: correctly center dashboard subpages content
Browse files Browse the repository at this point in the history
  • Loading branch information
Me-Phew committed Mar 23, 2024
1 parent e506276 commit 7adeaa1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/views/Dashboard/AppointmentView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,12 @@ export default {
</style>

<style lang="scss" scoped>
.appointment-view {
display: flex;
align-items: center;
justify-content: center;
}
.cancel-appointment-wrapper {
display: flex;
flex-direction: column;
Expand Down
6 changes: 6 additions & 0 deletions src/views/Dashboard/ServiceView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,12 @@ export default {
</script>

<style lang="scss" scoped>
.service-view {
display: flex;
align-items: center;
justify-content: center;
}
.elevated-card {
@media only screen and (max-width: $sm) {
padding: 1rem;
Expand Down
4 changes: 4 additions & 0 deletions src/views/Dashboard/UserView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,10 @@ export default {
}
.user-view {
display: flex;
align-items: center;
justify-content: center;
.user {
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 7adeaa1

Please sign in to comment.