Skip to content

Commit

Permalink
fix: intructor img
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasdenecker committed Aug 11, 2023
1 parent ae6d4ad commit 93b2ec2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@
width="200px"
elevation="6"
>
<v-avatar :image="i.image" size="63"></v-avatar>
<v-avatar size="63">
<img :src="i.image" height="63" alt=""
/></v-avatar>
<p>
<b>{{ i.name }}</b>
</p>
Expand Down Expand Up @@ -111,17 +113,15 @@
</p>
<p class="text-h4">By languages</p>
<div class="d-flex flex-wrap justify-center">
<v-card

<v-card
width="300px"
class="ma-5 rounded-lg"
v-for="(n, key) in navigation"
:key="key"
@click="changePath(n._path)"
elevation="5"
>

<v-card-text class="d-flex flex-column" style="height: 100%;">
<v-card-text class="d-flex flex-column" style="height: 100%">
<div class="text-center mb-10">
<img :src="n.image" alt="logo" style="height: 100px" />
</div>
Expand Down Expand Up @@ -261,7 +261,6 @@ export default {
<style>
html {
scroll-behavior: smooth;
}
.title {
Expand Down

0 comments on commit 93b2ec2

Please sign in to comment.