use img-thumbnail css class instead of rounded circle

This commit is contained in:
Harald Bamberger
2023-05-05 15:47:23 +02:00
parent d131212d22
commit d361c4eb26
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -33,6 +33,7 @@
.searchbar_icon {
grid-column-start: icon;
grid-column-end: span 1;
margin-right: .75em;
}
.searchbar_data {
+1 -1
View File
@@ -15,7 +15,7 @@ export default {
<div class="searchbar_icon">
<action :res="this.res" :action="this.actions.defaultaction" @actionexecuted="$emit('actionexecuted')">
<img v-if="(typeof res.photo_url !== 'undefined') && (res.photo_url !== null)" :src="res.photo_url"
class="rounded-circle" height="100" />
class="img-thumbnail" height="100" />
<i v-else class="fas fa-user-circle fa-5x"></i>
</action>
</div>
+1 -1
View File
@@ -15,7 +15,7 @@ export default {
<div class="searchbar_icon">
<action :res="this.res" :action="this.actions.defaultaction" @actionexecuted="$emit('actionexecuted')">
<img v-if="(typeof res.foto !== 'undefined') && (res.foto !== null)" :src="res.foto"
class="rounded-circle" height="100" />
class="img-thumbnail" height="100" />
<i v-else class="fas fa-user-circle fa-5x"></i>
</action>
</div>