From 9eed4022a79f2cba139c9f8a359bfc8c1f9c31c5 Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 5 Jun 2024 14:44:08 -0400 Subject: ci: Stage blocking changes --- front-end/src/App.vue | 4 +- front-end/src/assets/main.scss | 6 +- front-end/src/bootstrap/components/Header.vue | 6 +- front-end/src/bootstrap/style/footer.scss | 2 +- front-end/src/router/index.ts | 66 +++++++++++++++++++++- front-end/src/store/globalState.ts | 3 +- front-end/src/store/socialMfaPlugin.ts | 16 ++---- front-end/src/views/Account/[comp].vue | 4 -- .../src/views/Account/components/oauth/Oauth.vue | 2 +- .../Account/components/oauth/SingleApplication.vue | 2 +- .../views/Account/components/profile/Profile.vue | 2 +- .../src/views/Account/components/settings/Fido.vue | 2 +- .../Account/components/settings/PasswordReset.vue | 14 ++--- .../src/views/Account/components/settings/Pki.vue | 2 +- .../views/Account/components/settings/Security.vue | 2 +- .../Account/components/settings/TotpSettings.vue | 4 +- front-end/src/views/Login/components/Social.vue | 52 +++++++++-------- front-end/src/views/Login/index.vue | 30 +++++----- 18 files changed, 141 insertions(+), 78 deletions(-) (limited to 'front-end/src') diff --git a/front-end/src/App.vue b/front-end/src/App.vue index 2f29fde..ecd9d73 100644 --- a/front-end/src/App.vue +++ b/front-end/src/App.vue @@ -3,7 +3,7 @@ {{ metaTile }} - + @@ -14,8 +14,8 @@ import { computed } from 'vue'; import { useStore } from './store'; import { storeToRefs } from 'pinia'; -import Environment from './bootstrap/Environment.vue'; import { apiCall } from '@vnuge/vnlib.browser'; +import Environment from './bootstrap/Environment.vue'; const store = useStore() const { siteTitle, pageTitle } = storeToRefs(store) diff --git a/front-end/src/assets/main.scss b/front-end/src/assets/main.scss index 168a034..d4a86e7 100644 --- a/front-end/src/assets/main.scss +++ b/front-end/src/assets/main.scss @@ -1,4 +1,4 @@ -#footer-content .footer-lower{ +#footer-content .footer-lower { @apply hidden; } @@ -15,4 +15,8 @@ background: -moz-linear-gradient(bottom right, #98E4C8, #2C6BC3); background: linear-gradient(to top left, #98E4C8, #2C6BC3); @apply text-gray-700; +} + +.text-bg{ + @apply text-gray-700 dark:text-gray-400; } \ No newline at end of file diff --git a/front-end/src/bootstrap/components/Header.vue b/front-end/src/bootstrap/components/Header.vue index 6093fdc..25c857e 100644 --- a/front-end/src/bootstrap/components/Header.vue +++ b/front-end/src/bootstrap/components/Header.vue @@ -2,7 +2,7 @@ diff --git a/front-end/src/views/Login/index.vue b/front-end/src/views/Login/index.vue index 476ebf4..8532390 100644 --- a/front-end/src/views/Login/index.vue +++ b/front-end/src/views/Login/index.vue @@ -38,7 +38,7 @@ const submitLogout = async () => {