From 6ea50532ccd7043f05e93bd64c09be20ac3db1e5 Mon Sep 17 00:00:00 2001 From: marcsello Date: Fri, 4 Dec 2020 02:00:23 +0100 Subject: [PATCH] stuffs --- src/main.js | 4 +- .../components/FlowchartLink.vue | 18 ++++- .../components/FlowchartNode.vue | 62 +++++++++-------- .../components/SimpleFlowchart.vue | 16 +++-- src/views/Dashboard.vue | 67 ++++++++++++------- 5 files changed, 102 insertions(+), 65 deletions(-) diff --git a/src/main.js b/src/main.js index a4719be..ea836a0 100644 --- a/src/main.js +++ b/src/main.js @@ -15,7 +15,8 @@ import { MdList, MdAvatar, MdRipple, - MdDialog + MdDialog, + MdSpeedDial, } from 'vue-material/dist/components' import 'vue-material/dist/vue-material.min.css' @@ -36,6 +37,7 @@ Vue.use(MdList); Vue.use(MdAvatar); Vue.use(MdRipple); Vue.use(MdDialog); +Vue.use(MdSpeedDial); new Vue({ diff --git a/src/simple-flowchart/components/FlowchartLink.vue b/src/simple-flowchart/components/FlowchartLink.vue index 05c3cad..a27687f 100644 --- a/src/simple-flowchart/components/FlowchartLink.vue +++ b/src/simple-flowchart/components/FlowchartLink.vue @@ -2,14 +2,16 @@ - + × + >× @@ -99,4 +101,14 @@ export default { g { cursor: pointer; } + +.link-delete { + font-size: 3em; + text-decoration: none; + text-align: center; + + &:hover { + text-decoration: none; + } +} \ No newline at end of file diff --git a/src/simple-flowchart/components/FlowchartNode.vue b/src/simple-flowchart/components/FlowchartNode.vue index 08c33b8..75f8306 100644 --- a/src/simple-flowchart/components/FlowchartNode.vue +++ b/src/simple-flowchart/components/FlowchartNode.vue @@ -1,15 +1,16 @@