I'm using Tikz-UML package to make some class diagram but arrows (association, inheritance...) are so tiny it looks ugly. Any way to make them larger? Example:
\documentclass{article}
\usepackage{booktabs}
\usepackage[table,xcdraw]{xcolor}
\usepackage{tikz}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{cmap}
\usepackage{minted}
\usepackage{import}
\usepackage{graphicx}
\usepackage{gensymb}
\usepackage{tikz-uml}
\usetikzlibrary{arrows,shadows}
\begin{document}
\begin{figure}[H]
\centering
%\resizebox{\textwidth}{!}{
\begin{tikzpicture}
\umlclass[x=0, y=0]{AlarmHandler}
{-alarmName }
{+initAlarm()}
\umlclass[x=0, y=-3]{AlarmHandler1}
{}
{}
\umlclass[x=0, y=-6]{AlarmHandler2}
{}
{}
\umlinherit[]{AlarmHandler2}{AlarmHandler1}
\umlinherit[]{AlarmHandler1}{AlarmHandler}
\end{tikzpicture}
%}
\caption{alarms\label{fig:alarm}}
\end{figure}
\end{document}
This is just basic example, problem is when I create more complex diagram and scale it to fit page width. Arrows are hard to see then. I included in example all libs that I'm using.


