HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //usr/share/opensearch-dashboards/src/core/public/rendering/_base.scss
/**
 * stretch the root element of the OpenSearch Dashboards application to set the base-size that
 * flexed children should keep. Only works when paired with root styles applied
 * by core service from new platform
 */
// SASSTODO: Naming here is too embedded and high up that changing them could cause major breaks
#opensearch-dashboards-body {
  min-height: 100%;
}

.app-wrapper {
  display: flex;
  flex-flow: column nowrap;
  margin: 0 auto;
  min-height: calc(100vh - #{$osdHeaderOffset});

  .headerIsExpanded & {
    min-height: calc(100vh - #{$osdHeaderOffset * 2});
  }

  &.hidden-chrome {
    min-height: 100vh;
  }
}

.app-wrapper-panel {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;

  > * {
    flex-shrink: 0;
  }
}