From 5bd8ce5d0f18ac434c8b27d427944a05e3d48943 Mon Sep 17 00:00:00 2001 From: Muhammad Furqan Date: Wed, 13 Sep 2023 16:37:25 +0500 Subject: [PATCH] Fix multi-line CVSkills Changes tabular alignment from middle to top This fixes the alinment issue when CVSkills overflow one line Has no impact on rest of the CV's alignment Signed-off-by: Muhammad Furqan --- awesome-cv.cls | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awesome-cv.cls b/awesome-cv.cls index ee2bd4c..d475317 100644 --- a/awesome-cv.cls +++ b/awesome-cv.cls @@ -426,9 +426,9 @@ % Commands for utilities %------------------------------------------------------------------------------- % Use to align an element of tabular table -\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} -\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} -\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} +\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}} +\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}p{#1}} +\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}p{#1}} % Use to draw horizontal line with specific thickness \def\vhrulefill#1{\leavevmode\leaders\hrule\@height#1\hfill \kern\z@}