- Impostato i Font giusti e la corretta disposizione del testo e dei suoi margini.

- L'immagine del libro, se è piccolo, viene adattato alla dimensione fissa (vedere se va bene).
This commit is contained in:
Surya Paolo
2024-11-24 14:40:29 +01:00
parent 6a6c15b62c
commit e10ff192bf
18 changed files with 392 additions and 123 deletions

View File

@@ -13,6 +13,7 @@ import {
IStatusSkill,
StateConnection,
IMyScheda,
ISchedaSingola,
} from '@model'
import { static_data } from '@src/db/static_data'
import * as Types from '@src/store/Api/ApiTypes'
@@ -116,7 +117,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
mailinglist: [],
mypage: [],
myelems: [],
myscheda: [],
myschedas: [],
calzoom: [],
producers: [],
groups: [],
@@ -277,7 +278,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
return state.myelems.filter((page: IMyElem) => (page._id === idPage)).sort((a: any, b: any) => a.order - b.order)
},
getMySchede: (state: IGlobalState) => (): IMyScheda[] | [] => {
getMySchede: (state: IGlobalState) => (): ISchedaSingola[] | [] => {
return state.myschedas
},