fix height and padding

This commit is contained in:
hamid zarghami
2025-08-06 16:10:30 +03:30
parent 9617565701
commit 58ec719fa1
5 changed files with 97 additions and 50 deletions
@@ -273,6 +273,17 @@ export const usePersonalityStore = create<PersonalityStore>((set, get) => ({
};
}),
setSectionPadding: (sectionKey: string, padding: string) =>
set((state) => ({
data: {
...state.data,
[sectionKey]: {
...state.data[sectionKey],
padding,
},
},
})),
setSectionHeight: (sectionKey: string, height: string) =>
set((state) => ({
data: {