_drawio.scss 561 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. div.drawio {
  2. display: inline-block;
  3. position: relative;
  4. button {
  5. @extend .btn;
  6. @extend .btn-outline-primary;
  7. position: absolute;
  8. bottom: 5px;
  9. right: 5px;
  10. padding: 0.4em 0.5em;
  11. font-size: 0.8em;
  12. display: none;
  13. }
  14. &:hover button {
  15. display: inline;
  16. }
  17. }
  18. div.drawioframe {
  19. position: fixed;
  20. height: 100%;
  21. width: 100%;
  22. top: 0;
  23. left: 0;
  24. z-index: 1000;
  25. background: #000b;
  26. border: 0;
  27. iframe {
  28. position: absolute;
  29. height: 90%;
  30. width: 90%;
  31. top: 5%;
  32. left: 5%;
  33. z-index: 1010;
  34. }
  35. }