diagram.css.scss 451B

12345678910111213141516171819202122232425262728293031
  1. .agent-diagram {
  2. position: relative;
  3. z-index: auto;
  4. svg.diagram {
  5. position: absolute;
  6. z-index: 1;
  7. }
  8. .overlay-container {
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. z-index: auto;
  13. .overlay {
  14. position: relative;
  15. z-index: auto;
  16. width: 100%;
  17. height: 100%;
  18. .badge {
  19. position: absolute;
  20. display: none;
  21. color: white !important;
  22. z-index: 2;
  23. }
  24. }
  25. }
  26. }