12345678910111213141516171819202122232425262728293031323334 |
- /* pages/create-project-role/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-pick-item picker {
- flex-grow: 1;
- }
- .sg-user-item {
- background: white;
- display: flex;
- align-items: center;
- }
- .sg-user-item .sg-name {
- font-size: 1.1rem;
- }
|