1234567891011121314151617181920212223242526272829303132 |
- /* pages/test-components/index.wxss */
- page {
- background-color: #f2f2f2;
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- .page-container {
- flex: 1 auto;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .page-footer {
- // position: absolute;
- // bottom: 0;
- // left: 0;
- // right: 0;
- padding: 40rpx 30rpx;
- // padding-bottom: env(safe-area-inset-bottom);
- background-color: #fff;
- }
- .container {
- margin: 26rpx;
- border-radius: 12rpx;
- overflow: hidden;
- height: auto;
- }
|