Skip to content

Commit

Permalink
Merge pull request #10 from ashwink0/master
Browse files Browse the repository at this point in the history
Remove cursor logic for event links
  • Loading branch information
ashwink0 authored May 2, 2021
2 parents 4f210b9 + c36a129 commit 72aee86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</v-sheet>
</v-hover>
<!-- REGULAR PERIOD -->
<a v-else :key="pIndex" :style="{'text-decoration': 'none', 'cursor': (period.link ? 'pointer' : 'default')}">
<a v-else :key="pIndex" :style="{'text-decoration': 'none'">
<v-sheet v-if="period.link" class="period regular-period border caption text-center d-flex" :color="getColor(period.name) && getColor(period.name)+' lighten-5'" :height="period.duration+1" tile :tag="period.link ? 'a' : 'div'" :href="period.link || false" target="_blank" @mousemove.stop="onMouseMove">
<v-layout :class="['content', {short: period.duration <= 50 || group.length > 1}, getColor(period.name) && getColor(period.name)+'--text text--darken-4']" column align-center justify-center>
<div ref="periodNames" class="period-name">
Expand Down

0 comments on commit 72aee86

Please sign in to comment.