@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
32 lines (31 loc) • 636 B
CSS
.ea-button {
box-sizing: border-box;
display: inline-block;
padding: 12px 20px;
margin: 0;
font-size: 14px;
font-weight: 500;
line-height: 1;
color: #606266;
text-align: center;
white-space: nowrap;
cursor: pointer;
background: #fff;
border: 1px solid #dcdfe6;
border-radius: 4px;
outline: none;
transition: 0.1s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.ea-button.ea-button-primary {
color: #fff;
background-color: #409eff;
border-color: #409eff;
}
.ea-button.ea-button-primary:hover {
color: #fff;
background: #66b1ff;
border-color: #66b1ff;
}