From 2e512b81d44de22ee9573b6e6e2f7a3fb859bc2b Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Tue, 16 Apr 2024 02:53:15 +0300 Subject: [PATCH] themes: increase default `date_and_location_width` value from 4.1 cm to 4.5 cm --- rendercv/themes/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rendercv/themes/__init__.py b/rendercv/themes/__init__.py index 1852021..1978768 100644 --- a/rendercv/themes/__init__.py +++ b/rendercv/themes/__init__.py @@ -85,10 +85,10 @@ class EntryAreaMargins(pydantic.BaseModel): ) date_and_location_width: LaTeXDimension = pydantic.Field( - default="4.1 cm", + default="4.5 cm", title="Date and Location Column Width", description=( - "The width of the date and location column. The default value is 4.1 cm." + "The width of the date and location column. The default value is 4.5 cm." ), )