mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-25 07:42:20 +10:00
fix: make nested lists work in PDF renderer, resolves #2993
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export type BuilderPreviewPageLayout = "horizontal" | "vertical";
|
||||
|
||||
export const DEFAULT_BUILDER_PREVIEW_PAGE_LAYOUT: BuilderPreviewPageLayout = "horizontal";
|
||||
|
||||
export const getNextBuilderPreviewPageLayout = (pageLayout: BuilderPreviewPageLayout): BuilderPreviewPageLayout =>
|
||||
pageLayout === "horizontal" ? "vertical" : "horizontal";
|
||||
Reference in New Issue
Block a user