File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
src/.vitepress/components Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,11 @@ const imageAlt = computed(() => {
19
19
20
20
<template >
21
21
<div class =" team-card" >
22
- <img :src =" `../../about/images/${imageFileName}`" :alt =" imageAlt" />
22
+ <img
23
+ :src =" `../../about/images/${imageFileName}`"
24
+ :alt =" imageAlt"
25
+ class =" member-profile-image"
26
+ />
23
27
<section >
24
28
<h3 class =" member-name" >{{ profile.name }}</h3 >
25
29
<p >
@@ -51,7 +55,7 @@ const imageAlt = computed(() => {
51
55
.team-card {
52
56
--grid-column : 32px ;
53
57
display : grid ;
54
- grid-template-columns : var ( --grid-column ) 1fr ;
58
+ grid-template-columns : 80 px 1fr ;
55
59
grid-column-gap : var (--grid-column );
56
60
margin-bottom : calc (var (--grid-column ) / 2 );
57
61
padding : var (--grid-column );
@@ -60,6 +64,12 @@ const imageAlt = computed(() => {
60
64
}
61
65
62
66
.team-card .member-name {
63
- margin-top : 0 ;
67
+ margin : 0 ;
68
+ }
69
+
70
+ .member-profile-image {
71
+ width : 80px ;
72
+ height : 80px ;
73
+ border-radius : 50% ;
64
74
}
65
75
</style >
You can’t perform that action at this time.
0 commit comments