Skip to content

Commit 0fc24ed

Browse files
committed
fix: adjust the layout for board members
1 parent de08221 commit 0fc24ed

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/components/Person/Person.module.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,13 @@
4545

4646
.personSizeXl > .photoWrap > .photo {
4747
border-radius: 200px;
48-
height: 190px;
49-
width: 152px;
48+
height: 130px;
49+
width: 110px;
50+
51+
@media (min-width: 1191px) {
52+
height: 190px;
53+
width: 152px;
54+
}
5055
}
5156

5257
@media (min-width: 960px) {

src/components/Person/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function Person({ className = '', avatar, variation, size, xlWidth, name,
5757
</div>
5858
<p className={style.info}>
5959
<span className={cn('ktl-h4', 'n')}>{name}</span>
60-
<span className={cn(textCn('ktl-text-2'), 'org')}>{company}</span>
60+
<span className={cn(textCn('ktl-text-3'), 'org')}>{company}</span>
6161
</p>
6262
</div>
6363
);

0 commit comments

Comments
 (0)