1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .ant-page-infinite {
- position: relative;
- width: 100%;
- box-sizing: border-box;
- }
- .ant-page-infinite-content {
- width: 100%;
- }
- .ant-page-infinite-content::-webkit-scrollbar {
- display: none;
- }
- .ant-page-infinite-wrap {
- position: absolute;
- bottom: 1px;
- left: 0;
- right: 0;
- width: 100%;
- height: 3px;
- z-index: 2;
- pointer-events: none;
- }
- .ant-page-infinite-area {
- position: absolute;
- left: 50%;
- width: 26px;
- height: 3px;
- overflow: hidden;
- border-radius: 2px / 2;
- transform: translateX(-50%);
- background-color: #f5f5f5;
- }
- .ant-page-infinite-move {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 50%;
- height: 100%;
- transition: all 100ms linear;
- border-radius: 2px / 2;
- background-color: #1677ff;
- }
|