index.wxss 327 B

12345678910111213141516
  1. /* pages/backdrop/index.wxss */
  2. .custom-content {
  3. position: absolute;
  4. top: 50%;
  5. left: 50%;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. width: 150px;
  10. height: 150px;
  11. margin-top: -75px;
  12. margin-left: -75px;
  13. padding: 15px;
  14. background: #fff;
  15. border-radius: 6px;
  16. }