index.css 391 B

12345678910111213141516
  1. @import '../common/index.css';
  2. .van-goods-action {
  3. position: fixed;
  4. right: 0;
  5. bottom: 0;
  6. left: 0;
  7. display: -webkit-flex;
  8. display: flex;
  9. -webkit-align-items: center;
  10. align-items: center;
  11. background-color: #fff;
  12. background-color: var(--goods-action-background-color, #fff);
  13. }
  14. .van-goods-action--safe {
  15. padding-bottom: env(safe-area-inset-bottom);
  16. }