mock平台

ProjectList.scss 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .ant-tabs-bar {
  2. border-bottom: 1px solid transparent;
  3. margin-bottom: 0;
  4. }
  5. .m-panel{
  6. background-color: #fff;
  7. padding: 24px;
  8. min-height: 4.68rem;
  9. margin-top: 0;
  10. }
  11. .project-list{
  12. .project-list-header{
  13. background: #eee;
  14. height: 64px;
  15. line-height: 40px;
  16. border-radius: 4px;
  17. text-align: right;
  18. padding: 0 10px;
  19. font-weight: bold;
  20. margin-bottom: 15px;
  21. display: flex;
  22. align-items: center;
  23. color: rgba(39, 56, 72, 0.85);
  24. font-weight: 500;
  25. }
  26. .owner-type{
  27. // padding: 10px;
  28. font-size: 15px;
  29. // background-color: #eee;
  30. // border-radius: 4px;
  31. // margin-bottom: 15px;
  32. font-weight: 400;
  33. margin-bottom: 0.16rem;
  34. border-left: 3px solid #2395f1;
  35. padding-left: 8px;
  36. }
  37. }
  38. .ant-input-group-wrapper {
  39. width: 100%;
  40. }
  41. .dynamic-delete-button {
  42. cursor: pointer;
  43. position: relative;
  44. top: 4px;
  45. font-size: 24px;
  46. color: #999;
  47. transition: all .3s;
  48. }
  49. .dynamic-delete-button:hover {
  50. color: #777;
  51. }
  52. .dynamic-delete-button[disabled] {
  53. cursor: not-allowed;
  54. opacity: 0.5;
  55. }