Skip to content

Commit

Permalink
Merge pull request #381 from vuejs-jp/fix/style-panelist
Browse files Browse the repository at this point in the history
Fix/ Update responsive styles for tablet and mobile devices
  • Loading branch information
jiyuujin authored Oct 16, 2024
2 parents 609f7dc + 48107bc commit 2f86df6
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion apps/web/app/components/event/PanelerList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,24 @@ const currentLocale = useLocaleCurrent().locale
gap: calc(var(--unit) * 1);
padding: calc(var(--unit) * 2);
}
@media (--tablet) {
::v-deep(.speaker-name) {
font-size: 0.875rem;
letter-spacing: 0.4px;
}
::v-deep(.speaker-affiliation) {
font-size: 0.6875rem;
}
}
}
.eventcard-persons div {
width: calc(calc(100% - 16px) / 2);
height: 120px;
@media (--mobile) {
@media (--tablet) {
width: 100%;
}
}
Expand Down

0 comments on commit 2f86df6

Please sign in to comment.