style.scss 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .dialog-bg {
  2. background-color: rgba(0, 0, 0, 0.5);
  3. position : fixed;
  4. left : 0;
  5. top : 0;
  6. right : 0;
  7. bottom : 0;
  8. display : flex;
  9. align-items : center;
  10. justify-content : center;
  11. z-index : 99;
  12. }
  13. .dialog {
  14. $padding : 16px;
  15. width : 680px;
  16. background-color: #fff;
  17. border-radius : 4px;
  18. .head {
  19. padding : $padding;
  20. display : flex;
  21. justify-content: space-between;
  22. align-items : center;
  23. h3 {
  24. font-size : 16px;
  25. color : var(--colorColor);
  26. font-weight: normal;
  27. margin : 0;
  28. }
  29. i {
  30. font-size: 1.5rem;
  31. color : rgb(145, 148, 154);
  32. cursor : pointer;
  33. }
  34. }
  35. .content {
  36. padding : 24px 30px;
  37. border-top : 1px solid var(--bgColor);
  38. border-bottom: 1px solid var(--bgColor);
  39. max-height : 600px;
  40. overflow-y : auto;
  41. }
  42. .floot {
  43. float : right;
  44. padding: $padding;
  45. }
  46. }