Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion components/events/EventCardCollection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ export default {

<style lang="postcss" scoped>
.eventCardCollection {
@apply mx-0 grid grid-cols-1 justify-items-center sm:grid-cols-2 md:mx-4 lg:grid-cols-3;
@apply mx-0 grid grid-cols-1 justify-items-center sm:grid-cols-2 md:mx-4;
column-gap: 24px;
row-gap: 32px;
@media (min-width: 415px) {
column-gap: 36px;
row-gap: 42px;
}
@media (min-width: 1194px) {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
</style>
2 changes: 1 addition & 1 deletion pages/conference/poster-session.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<template #br><br /></template>
</i18n>
</banner>
<i18n-page-wrapper class="px-2 sm:px-8 md:px-16 lg:px-32" custom-x>
<i18n-page-wrapper class="px-2 sm:px-8 md:px-16" custom-x>
<div class="poster-session__container">
<article
v-for="poster in $t('posters')"
Expand Down
2 changes: 1 addition & 1 deletion pages/events/overview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,6 @@ export default {

<style scoped>
.pageWrapper {
@apply px-4 md:px-32;
@apply px-4 lg:px-32;
}
</style>
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module.exports = {
xs: '360px',
sm: '640px',
md: '768px',
lg: '1194px',
lg: '1024px',
xl: '1440px',
'2xl': '1600px',
},
Expand Down
Loading