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 @@