index.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .container {
  2. display: flex;
  3. width: 100%;
  4. height: 340px;
  5. margin-top: 20px;
  6. .left {
  7. flex: auto;
  8. max-width: 550px;
  9. overflow-y: auto;
  10. border: 1px solid lightgray;
  11. .header {
  12. display: flex;
  13. align-items: center;
  14. width: 100%;
  15. height: 40px;
  16. border-bottom: 1px solid lightgray;
  17. //justify-content: space-around;
  18. div {
  19. display: flex;
  20. //width: 100%;
  21. align-items: center;
  22. justify-content: flex-start;
  23. height: 100%;
  24. .title {
  25. margin: 0 10px;
  26. font-weight: 600;
  27. font-size: 16px;
  28. }
  29. .description {
  30. margin-left: 10px;
  31. color: lightgray;
  32. font-size: 12px;
  33. }
  34. }
  35. .action {
  36. width: 150px;
  37. font-size: 14px;
  38. }
  39. }
  40. }
  41. .right {
  42. flex: auto;
  43. border: 1px solid lightgray;
  44. border-left: none;
  45. .header {
  46. display: flex;
  47. align-items: center;
  48. justify-content: space-between;
  49. width: 100%;
  50. height: 40px;
  51. border-bottom: 1px solid lightgray;
  52. .title {
  53. display: flex;
  54. div {
  55. margin: 0 10px;
  56. }
  57. }
  58. .action {
  59. display: flex;
  60. div {
  61. margin: 0 10px;
  62. }
  63. }
  64. }
  65. .log {
  66. height: 290px;
  67. padding: 5px;
  68. overflow: auto;
  69. }
  70. }
  71. }