+
+ {{ appTitle }}
+
+
+
@@ -35,12 +23,7 @@
-
+
@@ -56,22 +39,21 @@ export default {
data() {
return {
appTitle: import.meta.env.VITE_APP_TITLE,
- secureAppTitle: import.meta.env.VITE_APP_TITLE,
routes: Routes,
- //user: null
- user: { userName: 'John Smith' }
+ user: null
}
},
created() {
- // this.getUserInfo().then(()=> {
- // this.user = this.userInfo;
- // });
+ useAuthStore().getUserInfo().then(() => {
+ this.user = this.userInfo;
+ });
},
computed: {
...mapState(useAuthStore, ['userInfo', 'isAuthenticated'])
},
methods: {
- ...mapActions(useAuthStore, ['getUserInfo'])
+ ...mapActions(useAuthStore, ['getUserInfo']),
+ useAuthStore
}
}
@@ -87,6 +69,17 @@ a {
.logo {
padding-right: 15px;
+ padding-top: 4px;
+ width: 205px;
+ height: 77px;
+}
+
+.verticalLine {
+ border-left: 1px solid #DFB433;
+ height: 50px;
+ margin-left: 12px;
+ padding-left: 24px;
+ margin-top: 4px;
}
.gov-header .title {
@@ -123,4 +116,8 @@ a {
padding-top: 20px;
height: 80%;
}
+
+.mainTitle {
+ font-size: 1.0rem;
+}
diff --git a/frontend/src/components/Home.vue b/frontend/src/components/Home.vue
index b5b9dc96..c08faf93 100644
--- a/frontend/src/components/Home.vue
+++ b/frontend/src/components/Home.vue
@@ -1,4 +1,9 @@
-
+
diff --git a/frontend/src/components/ModalIdle.vue b/frontend/src/components/ModalIdle.vue
index 53d19c11..574e639b 100644
--- a/frontend/src/components/ModalIdle.vue
+++ b/frontend/src/components/ModalIdle.vue
@@ -6,7 +6,7 @@