1234567891011121314151617181920212223242526272829303132 |
- /* pages/leaveadd/leaveadd.wxss */
- .leaveadd .user-address .user-address-h1 {
- font-weight: 600;
- }
- .leaveadd .user-address .user-address-h2 {
- max-width: 85vw;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .leaveadd .flex {
- display: flex;
- justify-content: start;
- align-items: center;
- flex-wrap: wrap;
- }
- .leaveadd .flex .item {
- margin: 10rpx 20rpx;
- padding: 5rpx 15rpx;
- color: black;
- border: 1rpx solid #eee;
- }
- .leaveadd .flex .block {
- background-color: #1989fa;
- color: #fff;
- border-radius: 10rpx;
- border: 0;
- }
- .leaveadd .button {
- margin-top: 50rpx;
- padding: 20rpx;
- }
|