I solved it with custom html and css:
<a href="/functionaliteiten/templates" class="panel">
<i class="fas fa-edit"></i>
<h4>Templates</h4>
<p>In de Huisstijlmanager kun je talloze templates opnemen.</p>
</a>
.panel {
box-sizing: border-box;
padding: 20px 20px 10px 20px;
background-color: white;
border-radius: 0px;
display: block;
text-align: center;
}
.panel:hover {
background: #ffffff;
box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}
.panel .fa, .fas:hover {
color: #5c79ba !important;
}
.panel h4 {
margin-top: 15px;
margin-bottom: 10px;
color: #0b3754;
}
.panel h4:hover {
color: #5c79ba;
}
.panel p {
color: #0b3754;
}
.panel i {
font-size: 48px;
color: #e84277;
}
Pretty time consuming, so hopefully this functionality will be included in a future update.
Regards,
Remco