1
0

diagram.css.scss 376 B

1234567891011121314151617181920212223242526
  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. z-index: auto;
  10. .overlay {
  11. z-index: auto;
  12. width: 100%;
  13. height: 100%;
  14. .badge {
  15. position: absolute;
  16. display: none;
  17. color: white !important;
  18. z-index: 2;
  19. }
  20. }
  21. }
  22. }