Skip to content

Commit

Permalink
Partially remove custom table from schedule
Browse files Browse the repository at this point in the history
For some reason, it's not meshing well with timezone-based rehydration

Related to Issue #43
  • Loading branch information
BobChao87 committed Oct 23, 2021
1 parent 50ae8d4 commit 625ddf0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions components/marathon/schedule/List.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<ElementTable class="schedule-container">
<div class="schedule-container">
<!-- Ad -->
<AdsByGoogle ad-slot="5905320802" ad-format="" class="is-advertisement" />
<!-- Header -->
Expand Down Expand Up @@ -103,7 +103,7 @@
</ElementTableDetail>
</template>
</template>
</ElementTable>
</div>
<div class="is-centered">
<WidgetLoading :while="[ schedule ]" />
</div>
Expand Down Expand Up @@ -257,6 +257,12 @@ export default Vue.extend({

<style lang="scss" scoped>
.schedule-container {
// Temporary relocation of ElementTable styling
display: grid;
grid-auto-rows: auto;
width: 100%;
max-width: 100%;
// End temporary styles
overflow-x: auto;
grid-template-columns: repeat(9, auto);
Expand Down

0 comments on commit 625ddf0

Please sign in to comment.