Skip to content
Snippets Groups Projects
app.component.scss 491 B
Newer Older
  • Learn to ignore specific revisions
  • @import 'breakpoint';
    @import 'color';
    @import 'layout';
    
    .app-container {
      display: block;
      flex-direction: column;
    }
    
    
    @media print {
      .app-body {
        height: 100% !important;
      }
    }
    
    .app-body {
    
      display: flex;
      flex-direction: column;
    
      overflow-y: auto;
    
      overflow-x: hidden;
      position: relative;
    
      height: calc(100svh - #{$header-height});
    
    .loader {
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      &.loader-gif {
        max-height: 185px;
      }