@javaguns/flow-ui
Version:
``` <template> <a-spin :spinning="loading"> <FlowDesigner ref="flowDesigner" top="50px"> </FlowDesigner> </a-spin> </template> <script lang="ts" setup> import { ref, provide, onMounted } from 'vue'; import { FlowDesigner, LoadingKey } from '@j
22 lines (21 loc) • 439 B
CSS
.guns-flow-remove-button {
position: absolute;
top: -10px;
right: -8px;
padding: 3px ;
width: 20px;
height: 20px;
background: #9e9e9e;
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
color: #fff;
display: none;
align-items: center;
justify-content: center;
border: none ;
cursor: pointer;
}
.guns-flow-remove-button:hover {
display: flex;
background-color: #f56c6c;
border-color: #f56c6c;
}