/**
 * Copyright (c) 2017-present, Facebook, Inc.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docPage {
  display: flex;
}

.docSidebarContainer {
  border-right: 1px solid var(--ifm-contents-border-color);
  box-sizing: border-box;
  width: 300px;
  position: relative;
  top: calc(-1 * var(--ifm-navbar-height));
}

.docMainContainer {
  flex-grow: 1;
}

@media (max-width: 996px) {
  .docPage {
    display: inherit;
  }
}
