mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-14 06:47:00 +10:00
30 lines
403 B
TypeScript
30 lines
403 B
TypeScript
export const pageDimensionsAsPixels = {
|
|
a4: {
|
|
width: 794,
|
|
height: 1123,
|
|
},
|
|
letter: {
|
|
width: 816,
|
|
height: 1056,
|
|
},
|
|
"free-form": {
|
|
width: 794,
|
|
height: 1123,
|
|
},
|
|
} as const;
|
|
|
|
export const pageDimensionsAsMillimeters = {
|
|
a4: {
|
|
width: "210mm",
|
|
height: "297mm",
|
|
},
|
|
letter: {
|
|
width: "216mm",
|
|
height: "279mm",
|
|
},
|
|
"free-form": {
|
|
width: "210mm",
|
|
height: "297mm",
|
|
},
|
|
} as const;
|