style.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .process-page {
  2. padding: 16px 24px 60px;
  3. /* .header {
  4. @apply flex justify-between;
  5. .tabs {
  6. .tab {
  7. @apply inline-block border-none cursor-pointer;
  8. background: #fff;
  9. border-radius: 3px;
  10. margin-right: 8px;
  11. padding: 5px 16px;
  12. color: #808695;
  13. box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.04);
  14. &.active {
  15. color: #2d8cf0 !important;
  16. }
  17. &:hover {
  18. color: #515a6e;
  19. }
  20. }
  21. }
  22. .el-button {
  23. box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.1);
  24. }
  25. } */
  26. .wrap {
  27. @apply flex items-start;
  28. .el-card {
  29. border: none;
  30. &.step {
  31. width: 280px;
  32. min-height: 450px;
  33. }
  34. &.preview {
  35. @apply flex-1;
  36. margin-left: 16px;
  37. min-height: 900px;
  38. .area {
  39. @apply flex items-center justify-center;
  40. height: 500px;
  41. background: #e7e7e7;
  42. border-radius: 4px;
  43. }
  44. .btn-wrap {
  45. @apply text-right;
  46. margin-top: 20px;
  47. }
  48. }
  49. :deep(.el-tree) {
  50. .el-tree-node__content {
  51. @apply cursor-default;
  52. background: transparent !important;
  53. height: 30px;
  54. .el-tree-node__expand-icon {
  55. display: none;
  56. margin: 0;
  57. }
  58. }
  59. }
  60. }
  61. .btns {
  62. text-align: right;
  63. margin-bottom: 16px;
  64. }
  65. }
  66. }