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 <mfurqan1024@gmail.com>
This commit is contained in:
Muhammad Furqan 2023-09-13 16:37:25 +05:00
parent dac2344440
commit 5bd8ce5d0f
No known key found for this signature in database
GPG key ID: E1F3C0BEE6B7747E

View file

@ -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@}