mixed.less 741 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. /deep/ &>.el-scrollbar {
  39. flex: 1;
  40. /deep/ &>.el-scrollbar__wrap {
  41. overflow-x: hidden;
  42. }
  43. }
  44. /deep/ &>* {
  45. flex: 1;
  46. }
  47. }
  48. }