Skip to content

Commit

Permalink
Merge pull request #49 from jesusantguerrero/v1.11.0
Browse files Browse the repository at this point in the history
fix tailwind build styles
  • Loading branch information
jesusantguerrero authored May 4, 2021
2 parents 7d6e267 + 25b49d0 commit 695d9fa
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"vue-draggable-next": "^2.0.1",
"vue-final-modal": "^1.8.5",
"vue-router": "^4.0.3",
"vue-temporal-components": "^0.1.3"
"vue-temporal-components": "^0.1.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.4.0",
Expand Down
15 changes: 13 additions & 2 deletions src/components/organisms/MatrixBoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,19 @@
@task-clicked="setTaskToEdit"
focused-text-class="text-green-500"
marker-bg-class="bg-green-400"
/>
>
<template v-slot:description="{focusedTextClass, item: task, differenceInCalendarDays: days}">
<div class="mx-2 text-left h-full flex items-center">
<span class="capitalize text-gray-400" :class="state.quadrants[task.matrix].color">
{{ task.matrix}}:
</span>
{{ task.title }}
<span class="text-sm font-bold ml-2" :class="focusedTextClass">
{{ days }} days
</span>
</div>
</template>
</roadmap-view>
</div>

<task-modal
Expand All @@ -114,7 +126,6 @@
import { computed, defineProps, reactive, watch, ref, onUnmounted } from 'vue'
import { ElMessageBox, ElNotification } from 'element-plus';
import { RoadmapView } from "vue-temporal-components";
import "vue-temporal-components/dist/vue-temporal-components.css";
import { useTaskFirestore } from "../../utils/useTaskFirestore"
import { useDateTime } from "../../utils/useDateTime"
import TaskGroup from "../organisms/TaskGroup.vue"
Expand Down
1 change: 1 addition & 0 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { createApp } from 'vue'
import App from './App.vue'
import "vue-temporal-components/dist/vue-temporal-components.css";
import "./assets/scss/main.scss";
import ElementPlus from 'element-plus'
import 'element-plus/lib/theme-chalk/index.css'
Expand Down

1 comment on commit 695d9fa

@vercel
Copy link

@vercel vercel bot commented on 695d9fa May 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.