diff --git a/js/src/apollo/user.ts b/js/src/apollo/user.ts index ac617fda4..969e31392 100644 --- a/js/src/apollo/user.ts +++ b/js/src/apollo/user.ts @@ -134,8 +134,6 @@ export default function buildCurrentUserResolver( }, }; - console.debug("updating current user location", data); - localCache.writeQuery({ data, query: CURRENT_USER_LOCATION_CLIENT }); }, }, diff --git a/js/src/assets/oruga-tailwindcss.css b/js/src/assets/oruga-tailwindcss.css index 8c2f80610..ae2bf55e9 100644 --- a/js/src/assets/oruga-tailwindcss.css +++ b/js/src/assets/oruga-tailwindcss.css @@ -204,3 +204,35 @@ button.menubar__button { @apply text-white; background: #363636; } + +/** Pagination */ +.pagination { + @apply flex items-center text-center justify-between; +} +.pagination-link { + @apply inline-flex items-center relative justify-center cursor-pointer rounded h-10 m-1 p-2 bg-white text-lg; +} +.pagination-list { + @apply flex items-center text-center list-none flex-wrap grow shrink justify-start; +} +.pagination-next, +.pagination-previous { + @apply px-3; +} +.pagination-link-current { + @apply bg-primary cursor-not-allowed pointer-events-none border-primary text-white; +} +.pagination-ellipsis { + @apply text-center m-1 text-gray-300; +} + +/** Tabs */ +.tabs-nav { + @apply flex items-center justify-start pb-0.5; +} +.tabs-nav-item-boxed { + @apply flex items-center justify-center px-2 py-2 rounded-t border-transparent; +} +.tabs-nav-item-active-boxed { + @apply bg-white border-gray-300 text-primary; +} diff --git a/js/src/components/Categories/CategoryCard.vue b/js/src/components/Categories/CategoryCard.vue index 4ef4242a2..1c3e5c6df 100644 --- a/js/src/components/Categories/CategoryCard.vue +++ b/js/src/components/Categories/CategoryCard.vue @@ -3,7 +3,7 @@ :to="{ name: 'SEARCH', query: { - eventCategory: category.key, + categoryOneOf: [category.key], contentType: 'EVENTS', radius: undefined, }, diff --git a/js/src/components/Event/EventCard.vue b/js/src/components/Event/EventCard.vue index c2c9dcfb2..43c0ac830 100644 --- a/js/src/components/Event/EventCard.vue +++ b/js/src/components/Event/EventCard.vue @@ -1,6 +1,6 @@