index.less 773 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .app-popup {
  2. .app-modal__container {
  3. min-height: 50%;
  4. border-radius: var(--van-popup-round-border-radius, 14px) var(--van-popup-round-border-radius, 14px) 0 0;
  5. overflow: hidden;
  6. }
  7. .app-view {
  8. background-color: #fff;
  9. }
  10. &__header {
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. background-color: #fff;
  15. padding: 16px;
  16. padding-bottom: 0;
  17. .title {
  18. font-size: 16px;
  19. font-weight: bold;
  20. }
  21. }
  22. &__container {
  23. background-color: #fff;
  24. padding: 10px;
  25. }
  26. &__footer {
  27. background-color: #fff;
  28. padding-top: 24px;
  29. &:empty {
  30. display: none;
  31. }
  32. }
  33. }