ModulesTreemap.css 740 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .container {
  2. align-items: stretch;
  3. display: flex;
  4. height: 100%;
  5. position: relative;
  6. width: 100%;
  7. }
  8. .map {
  9. flex: 1;
  10. }
  11. .sidebarGroup {
  12. font: var(--main-font);
  13. margin-bottom: 20px;
  14. }
  15. .showOption {
  16. margin-top: 5px;
  17. }
  18. .activeSize {
  19. font-weight: bold;
  20. }
  21. .foundModulesInfo {
  22. display: flex;
  23. font: var(--main-font);
  24. margin: 8px 0 0;
  25. }
  26. .foundModulesInfoItem + .foundModulesInfoItem {
  27. margin-left: 15px;
  28. }
  29. .foundModulesContainer {
  30. margin-top: 15px;
  31. max-height: 600px;
  32. overflow: auto;
  33. }
  34. .foundModulesChunk + .foundModulesChunk {
  35. margin-top: 15px;
  36. }
  37. .foundModulesChunkName {
  38. cursor: pointer;
  39. font: var(--main-font);
  40. font-weight: bold;
  41. margin-bottom: 7px;
  42. }
  43. .foundModulesList {
  44. margin-left: 7px;
  45. }