performanceAnalysis.scss 874 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .performance-analysis {
  2. padding: 15px;
  3. &-search {
  4. background-color: #fff;
  5. border-radius: 5px;
  6. padding: 15px;
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. margin-bottom: 10px;
  11. &-left {
  12. .tab {
  13. display: flex;
  14. border: solid 1px #1767f2;
  15. &-item {
  16. width: 40px;
  17. height: 34px;
  18. line-height: 34px;
  19. text-align: center;
  20. border-right: solid 1px #1767f2;
  21. color: #1767f2;
  22. font-size: 16px;
  23. &:last-child {
  24. border-right: none;
  25. }
  26. }
  27. .active {
  28. background-color: #1767f2;
  29. color: #fff;
  30. }
  31. }
  32. }
  33. &-right {
  34. width: 150px;
  35. }
  36. }
  37. &-content {
  38. background-color: #fff;
  39. border-radius: 5px;
  40. margin-bottom: 10px;
  41. padding: 15px;
  42. }
  43. }