This commit is contained in:
2023-09-17 16:08:53 +02:00
parent f63faa97a0
commit 2e88dda569
18 changed files with 200 additions and 68 deletions

View File

@ -1,6 +1,6 @@
<template>
<div class="employee-box">
<img :src="$helper.getImage(image)" class="image">
<img class="employee-image" :src="$helper.getImage(image)">
<h3 class="name">{{ name }}</h3>
<h4 class="role">{{ role }}</h4>
</div>
@ -21,6 +21,11 @@ export default {
text-align: center;
}
.employee-image {
width: 140px !important;
border-radius: 50%;
}
.name {
margin: 36px 0 0;
font-weight: 300;
@ -41,5 +46,9 @@ export default {
.role {
margin-top: 8px;
}
.employee-image {
width: 100%;
}
}
</style>