Skip to content

Commit

Permalink
Dashboard completed
Browse files Browse the repository at this point in the history
  • Loading branch information
mightycox committed Sep 29, 2023
1 parent f73aecf commit 76d8ff2
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions frontend/src/components/DashboardTable.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<template>
<v-container>
<v-row
justify="center"
justify="start"
align="center"
>
<v-col
v-if="hasRequiredPermission('SECURE_EXCHANGE')"
cols="auto"
cols="12"
md="6"
>
<v-card
id="secureMessageInboxCard"
Expand Down Expand Up @@ -65,7 +66,8 @@
</v-col>
<v-col
v-if="isLoggedInDistrictUser && isDistrictActive"
cols="auto"
cols="12"
md="6"
>
<v-card
id="districtDetailsCard"
Expand Down Expand Up @@ -107,7 +109,8 @@
</v-col>
<v-col
v-if="isLoggedInSchoolUser && isSchoolActive"
cols="auto"
cols="12"
md="6"
>
<v-card
id="schoolContactsCard"
Expand Down Expand Up @@ -149,7 +152,8 @@
</v-col>
<v-col
v-if="isLoggedInDistrictUser && isDistrictActive"
cols="auto"
cols="12"
md="6"
>
<v-card
id="districtContactsCard"
Expand Down Expand Up @@ -191,7 +195,8 @@
</v-col>
<v-col
v-if="isLoggedInDistrictUser && isDistrictActive"
cols="auto"
cols="12"
md="6"
>
<v-card
id="districtUserSchoolContactsCard"
Expand Down Expand Up @@ -233,7 +238,8 @@
</v-col>
<v-col
v-if="isLoggedInSchoolUser && isSchoolActive"
cols="auto"
cols="12"
md="6"
>
<v-card
id="schoolDetailsCard"
Expand Down Expand Up @@ -274,7 +280,8 @@
</v-col>
<v-col
v-if="hasRequiredPermission('STUDENT_DATA_COLLECTION') && isLoggedInSchoolUser"
cols="auto"
cols="12"
md="6"
>
<v-card
id="studentDataCollectionCard"
Expand Down Expand Up @@ -598,5 +605,8 @@ export default {
word-break: break-word;
font-size: 20px;
}
.v-container {
max-width: 51.5em !important;
}
</style>

0 comments on commit 76d8ff2

Please sign in to comment.