Update haditha.
Update tailwind config.
This commit is contained in:
parent
04ec402249
commit
6ce508bc90
BIN
public/img/haditha/mobile/backgorund.png
Normal file
BIN
public/img/haditha/mobile/backgorund.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 151 KiB |
BIN
public/img/haditha/mobile/section-three-bgi.png
Normal file
BIN
public/img/haditha/mobile/section-three-bgi.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 175 KiB |
BIN
public/img/haditha/mobile/section-three-bgi_md.png
Normal file
BIN
public/img/haditha/mobile/section-three-bgi_md.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 352 KiB |
BIN
public/img/haditha/mobile/section-three-bgi_sm.png
Normal file
BIN
public/img/haditha/mobile/section-three-bgi_sm.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 175 KiB |
|
@ -69,7 +69,7 @@ export const useAuthStore = defineStore("authStore", {
|
||||||
isGuest(state) {
|
isGuest(state) {
|
||||||
return !state.isRealUser;
|
return !state.isRealUser;
|
||||||
},
|
},
|
||||||
async isAuthenticatedGetter(state) {
|
isAuthenticatedGetter(state) {
|
||||||
let isAuthenticated = useStorage("id_token", "GuestAccess").value;
|
let isAuthenticated = useStorage("id_token", "GuestAccess").value;
|
||||||
// updating value sample
|
// updating value sample
|
||||||
// isAuthenticated.value = null
|
// isAuthenticated.value = null
|
||||||
|
@ -266,8 +266,6 @@ export const useAuthStore = defineStore("authStore", {
|
||||||
// });
|
// });
|
||||||
},
|
},
|
||||||
async login(credentials) {
|
async login(credentials) {
|
||||||
console.info(import.meta.env.VITE_AUTH_BASE_URL)
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { $api } = useNuxtApp();
|
const { $api } = useNuxtApp();
|
||||||
const response = await $api(apis.login, {
|
const response = await $api(apis.login, {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit eaa3944fd56cc31c17aee11eb83689fa0a4b752e
|
Subproject commit 55f39c372115f524748c11bae4d71a7154544ef6
|
|
@ -1,24 +1,32 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
prefix: 'tw-',
|
prefix: "tw-",
|
||||||
content: [
|
content: [
|
||||||
'./components/**/*.{js,vue,ts}',
|
"./components/**/*.{js,vue,ts}",
|
||||||
'./layouts/**/*.vue',
|
"./layouts/**/*.vue",
|
||||||
'./pages/**/*.vue',
|
"./pages/**/*.vue",
|
||||||
'./plugins/**/*.{js,ts}',
|
"./plugins/**/*.{js,ts}",
|
||||||
'./nuxt.config.{js,ts}',
|
"./nuxt.config.{js,ts}",
|
||||||
],
|
],
|
||||||
theme: {
|
theme: {
|
||||||
|
screens: {
|
||||||
|
sm: "360px",
|
||||||
|
md: "720px",
|
||||||
|
lg: "992px",
|
||||||
|
xl: "1200px",
|
||||||
|
"2xl": "1400px",
|
||||||
|
"3xl": "1900px",
|
||||||
|
},
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
plugins: [],
|
plugins: [],
|
||||||
purge: {
|
purge: {
|
||||||
enabled: process.env.NODE_ENV === 'production',
|
enabled: process.env.NODE_ENV === "production",
|
||||||
content: [
|
content: [
|
||||||
'./components/**/*.{js,vue,ts}',
|
"./components/**/*.{js,vue,ts}",
|
||||||
'./layouts/**/*.vue',
|
"./layouts/**/*.vue",
|
||||||
'./pages/**/*.vue',
|
"./pages/**/*.vue",
|
||||||
'./plugins/**/*.{js,ts}',
|
"./plugins/**/*.{js,ts}",
|
||||||
'./nuxt.config.{js,ts}',
|
"./nuxt.config.{js,ts}",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user