index.less 706 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .g-modal {
  2. .g-modal-wrapper {
  3. position: relative;
  4. .close {
  5. font-size: 20px;
  6. position: absolute;
  7. top: 0;
  8. right: 0;
  9. cursor: pointer;
  10. color: #D0D8E2;
  11. }
  12. .g-modal-title {
  13. font-size: 20px;
  14. color: #303036;
  15. font-weight: 600;
  16. }
  17. .g-modal-body {
  18. padding: 30px 0;
  19. overflow-y: auto;
  20. }
  21. .g-modal-btns {
  22. margin: 0 -15px;
  23. .button {
  24. margin: 0 15px;
  25. padding-left: 30px;
  26. padding-right: 30px;
  27. }
  28. }
  29. .g-modal-btns.right {
  30. text-align: right;
  31. }
  32. .g-modal-btns.left {
  33. text-align: left;
  34. }
  35. .g-modal-btns.center {
  36. text-align: center;
  37. }
  38. }
  39. }