From 3d700daaa7d77b27cb824ae4aab9935670ffceb3 Mon Sep 17 00:00:00 2001 From: Songpol Siengvisuth Date: Wed, 31 Jan 2024 06:22:34 +0700 Subject: [PATCH] Adjust middle section width. --- src/pptx/profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pptx/profile.js b/src/pptx/profile.js index 03e47fe..2cbeed4 100644 --- a/src/pptx/profile.js +++ b/src/pptx/profile.js @@ -68,7 +68,7 @@ export default class Profile { }) this._middleTab = new Section({ x: 0.35, y: 0.120 }) - .withText({ x: 0.01, w: 4.77, text: 'RELEVANT EXPERIENCE', fontSize: 12, bold: true, color: '0c62fb', charSpacing: 2 }) + .withText({ x: 0.01, w: 4.5, text: 'RELEVANT EXPERIENCE', fontSize: 12, bold: true, color: '0c62fb', charSpacing: 2 }) .withShape({ x: 0.01, y: 0.045, w: 4.0, type: 'LINE', h: 0, line: { width: 0.5, color: 'c4c4c4' } }) .withText({ x: 0.01, y: 0.06, w: 4.77, text: profile.projects.map(toProjectBlocks).flat() })