_iframe.scss 568 B

12345678910111213141516171819202122232425262728293031323334353637
  1. body.iframe-mode {
  2. .main-sidebar {
  3. display: none;
  4. }
  5. .content-wrapper {
  6. margin-left: 0 !important;
  7. margin-top: 0 !important;
  8. padding-bottom: 0 !important;
  9. }
  10. .main-header,
  11. .main-footer {
  12. display: none;
  13. }
  14. }
  15. .content-wrapper {
  16. height: 100%;
  17. &.iframe-mode {
  18. .tab-empty {
  19. width: 100%;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. iframe {
  25. border: 0;
  26. width: 100%;
  27. height: 100%;
  28. .content-wrapper {
  29. padding-bottom: 0 !important;
  30. }
  31. }
  32. }
  33. }