Skip to content

Commit

Permalink
Update responsive styles for tablet and mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
totocalcio committed Oct 16, 2024
1 parent 7c2236b commit 48107bc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/web/app/components/event/PanelerList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ const currentLocale = useLocaleCurrent().locale
gap: calc(var(--unit) * 2);
padding: calc(var(--unit) * 5) calc(var(--unit) * 12) calc(var(--unit) * 5);
@media (--tablet) {
@media (--mobile) {
gap: calc(var(--unit) * 1);
padding: calc(var(--unit) * 2);
}
@media (--tablet) {
::v-deep(.speaker-name) {
font-size: 0.875rem;
letter-spacing: 0.4px;
Expand All @@ -58,7 +60,7 @@ const currentLocale = useLocaleCurrent().locale
width: calc(calc(100% - 16px) / 2);
height: 120px;
@media (--mobile) {
@media (--tablet) {
width: 100%;
}
}
Expand Down

0 comments on commit 48107bc

Please sign in to comment.