share-poster.wxss 389 B

12345678910111213141516171819202122232425
  1. .share-poster {
  2. height: 100%;
  3. width: 100%;
  4. position: absolute;
  5. top: 0;
  6. left: 0;
  7. background: #6CBFFF;
  8. }
  9. .btn-save {
  10. height: 100rpx;
  11. width: 100%;
  12. position: absolute;
  13. bottom: 0;
  14. left: 0;
  15. background: #fff;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. font-size: 34rpx;
  20. color: #52AAFF;
  21. }
  22. canvas {
  23. height: calc(100% - 100rpx);
  24. width: 100%;
  25. }