index.wxss 710 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* pages/project-user/index.wxss */
  2. .sg-search-box {
  3. margin: 0 30rpx 30rpx 30rpx;
  4. display: flex;
  5. align-items: center;
  6. background: white;
  7. border-radius: 50rpx;
  8. padding: 15rpx 20rpx;
  9. }
  10. .sg-container {
  11. padding-top: 30rpx;
  12. }
  13. .sg-search-icon {
  14. margin-right: 20rpx;
  15. }
  16. .sg-search-box .sg-search-input {
  17. flex-grow: 1;
  18. }
  19. .sg-pick-item {
  20. display: flex;
  21. align-items: center;
  22. background: white;
  23. }
  24. .sg-user-item {
  25. background: white;
  26. display: flex;
  27. align-items: center;
  28. }
  29. .sg-user-item .sg-name {
  30. font-size: 1.1rem;
  31. }
  32. .sg-user-item.sg-selected {
  33. background: lightskyblue;
  34. }
  35. .sg-bottom-submit-box {
  36. display: flex;
  37. align-items: center;
  38. }
  39. .sg-bottom-submit-box .sg-action {
  40. width: 50%;
  41. }