Skip to content
Snippets Groups Projects
app.component.scss 628 B
Newer Older
  • Learn to ignore specific revisions
  • @import 'breakpoint';
    @import 'color';
    @import 'layout';
    
    @media not print {
      .app-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
      }
    
    @media print {
      .app-body {
    
        display: unset !important;
    
        height: 100% !important;
      }
    }
    
    .app-body {
    
      display: flex;
      flex-direction: column;
    
      overflow-y: auto;
    
      overflow-x: hidden;
    
      scrollbar-gutter: stable;
    
      position: relative;
    
      flex-grow: 1;
      flex-shrink: 1;
      flex-basis: auto;
    
    .loader {
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      &.loader-gif {
        max-height: 185px;
      }