web.scss 933 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .dialog {
  2. position: fixed;
  3. width: 100%;
  4. height: 100%;
  5. left: 0;
  6. top: 0;
  7. z-index: 6;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. &-main {
  12. min-width: 368px;
  13. border-radius: 10px;
  14. padding: 20px 30px;
  15. &-header {
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. font-size: 16px;
  20. line-height: 30px;
  21. }
  22. &-title {
  23. font-size: 16px;
  24. line-height: 30px;
  25. }
  26. &-content {
  27. font-size: 14px;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. margin-bottom: 20px;
  32. }
  33. &-footer {
  34. display: flex;
  35. justify-content: flex-end;
  36. }
  37. }
  38. }
  39. .btn {
  40. padding: 8px 20px;
  41. margin: 0 6px;
  42. border-radius: 4px;
  43. border: none;
  44. font-size: 14px;
  45. text-align: center;
  46. line-height: 20px;
  47. &:disabled {
  48. opacity: 0.3;
  49. }
  50. &:last-child {
  51. margin-right: 0;
  52. }
  53. }