Skip to content

Commit 2f86df6

Browse files
authored
Merge pull request #381 from vuejs-jp/fix/style-panelist
Fix/ Update responsive styles for tablet and mobile devices
2 parents 609f7dc + 48107bc commit 2f86df6

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

apps/web/app/components/event/PanelerList.vue

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,24 @@ const currentLocale = useLocaleCurrent().locale
4343
gap: calc(var(--unit) * 1);
4444
padding: calc(var(--unit) * 2);
4545
}
46+
47+
@media (--tablet) {
48+
::v-deep(.speaker-name) {
49+
font-size: 0.875rem;
50+
letter-spacing: 0.4px;
51+
}
52+
53+
::v-deep(.speaker-affiliation) {
54+
font-size: 0.6875rem;
55+
}
56+
}
4657
}
4758
4859
.eventcard-persons div {
4960
width: calc(calc(100% - 16px) / 2);
5061
height: 120px;
5162
52-
@media (--mobile) {
63+
@media (--tablet) {
5364
width: 100%;
5465
}
5566
}

0 commit comments

Comments
 (0)