1234567891011121314151617181920212223242526272829 |
- /* pages/project/index.wxss */
- .sg-user-box {
- background: white;
- }
- .sg-menu-box {
- padding-bottom: 0;
- }
- .sg-menu-list {
- display: flex;
- flex-wrap: wrap;
- }
- .sg-menu-list .sg-item .sg-img {
- width: 130rpx;
- }
- .sg-menu-list .sg-item {
- background: color;
- flex-direction: column;
- justify-content: center;
- width: 330rpx;
- background: white;
- box-sizing: border-box;
- margin-top: 30rpx;
- }
- .sg-menu-list .sg-item:nth-child(odd) {
- margin-right: 30rpx;
- }
- .sg-menu-header .sg-title {
- margin-right: 30rpx;
- }
|