@import '../assets/scss/breakpoint';
@import '../assets/scss/color';
@import '../assets/scss/layout';

.app-container {
  display: block;
  flex-direction: column;
}

@media print {
  .app-body {
    height: 100% !important;
  }
}
.app-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  height: calc(100vh - #{$header-height});
}

.loader {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  &.loader-gif {
    max-height: 185px;
  }
}