1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* pages/project-user/index.wxss */
- .sg-search-box {
- margin: 0 30rpx 30rpx 30rpx;
- display: flex;
- align-items: center;
- background: white;
- border-radius: 50rpx;
- padding: 15rpx 20rpx;
- }
- .sg-container {
- padding-top: 30rpx;
- }
- .sg-search-icon {
- margin-right: 20rpx;
- }
- .sg-search-box .sg-search-input {
- flex-grow: 1;
- }
- .sg-pick-item {
- display: flex;
- align-items: center;
- background: white;
- }
- .sg-user-item {
- background: white;
- display: flex;
- align-items: center;
- }
- .sg-user-item .sg-name {
- font-size: 1.1rem;
- }
- .sg-user-item.sg-selected {
- background: lightskyblue;
- }
- .sg-bottom-submit-box {
- display: flex;
- align-items: center;
- }
- .sg-bottom-submit-box .sg-action {
- width: 50%;
- }
|