index.wxss 640 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* pages/swipe-action/index.wxss */
  2. .demo-item {
  3. position: relative;
  4. padding: 20rpx;
  5. background-color: #fff;
  6. }
  7. .demo-item::after {
  8. content: " ";
  9. position: absolute;
  10. left: 0;
  11. bottom: 0;
  12. right: 0;
  13. height: 2rpx;
  14. border-bottom: 2rpx solid #d9d9d9;
  15. color: #d9d9d9;
  16. transform-origin: 0 100%;
  17. transform: scaleY(.5);
  18. }
  19. /* .demo-item:last-child:after {
  20. display: none;
  21. } */
  22. .demo-button {
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. overflow: hidden;
  27. height: 100%;
  28. min-width: 96rpx;
  29. padding: 0 16rpx;
  30. background: #33cd5f;
  31. color: #fff;
  32. }