_iframe.scss 310 B

12345678910111213141516171819202122232425
  1. body.iframe-mode {
  2. .main-sidebar {
  3. display: none;
  4. }
  5. .content-wrapper {
  6. margin-left: 0 !important;
  7. }
  8. .main-header,
  9. .main-footer {
  10. display: none;
  11. }
  12. }
  13. .content-wrapper {
  14. height: 100%;
  15. &.iframe-mode {
  16. iframe {
  17. border: 0;
  18. width: 100%;
  19. height: 100%;
  20. }
  21. }
  22. }