1234567891011121314151617 |
- /* miniprogram/pages/mediaList/index.wxss */
- .title {
- padding: var(--cell-vertical-padding, 10px) var(--cell-horizontal-padding, 16px);
- line-height: var(--cell-line-height, 24px);
- font-size: var(--cell-font-size, 14px);
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .browse .van-row {
- font-size: var(--cell-font-size, 14px);
- height: 2.5em;
- text-align: center;
- line-height: 2.5em;
- border-bottom: 1rpx solid #eee;
- }
|