mixed.less 757 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .mixed {
  2. //min-height: 100%;
  3. min-width: 800px;
  4. min-height: 500px;
  5. height: 100%;
  6. width: 100%;
  7. padding-right: 10px;
  8. display: flex;
  9. justify-content: flex-start;
  10. flex-direction: row;
  11. }
  12. .el-card {
  13. min-height: 100%;
  14. }
  15. .el-card /deep/ .el-card__header {
  16. padding: 10px;
  17. }
  18. .left {
  19. width: 260px;
  20. }
  21. .left .top {
  22. justify-content: space-around;
  23. align-items: left;
  24. }
  25. .right {
  26. flex: 1;
  27. }
  28. .el-form {
  29. max-width: 500px;
  30. }
  31. .el-card.left {
  32. display: flex;
  33. flex-direction: column;
  34. /deep/ &>.el-card__body {
  35. flex: 1;
  36. display: flex;
  37. // flex-direction: column;
  38. padding: 0;
  39. /deep/ &>.el-scrollbar {
  40. flex: 1;
  41. /deep/ &>.el-scrollbar__wrap {
  42. overflow-x: hidden;
  43. }
  44. }
  45. /deep/ &>* {
  46. flex: 1;
  47. }
  48. }
  49. }