h5.scss 960 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .dialog-h5 {
  2. height: 100%;
  3. top: 0;
  4. align-items: inherit;
  5. .dialog {
  6. &-main {
  7. border-radius: 0;
  8. padding: 0;
  9. display: flex;
  10. flex-direction: column;
  11. overflow: hidden;
  12. width: 100%;
  13. min-height: 80px;
  14. min-width: 120px;
  15. &-content {
  16. flex: 1;
  17. min-width: 0;
  18. min-height: 0;
  19. overflow: hidden;
  20. text-align: center;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. margin-bottom: 0;
  25. &-uniapp {
  26. padding: 40px 0;
  27. }
  28. }
  29. &-footer {
  30. border-top: 1px solid #DDD;
  31. .btn {
  32. flex: 1;
  33. margin: 0;
  34. background: none;
  35. border-right: 1px solid #DDD;
  36. &-default {
  37. color: #FF584C;
  38. border: none;
  39. }
  40. }
  41. }
  42. }
  43. }
  44. }
  45. .center {
  46. align-items: center;
  47. padding: 20px;
  48. box-sizing: border-box;
  49. }