"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fullHeightContentStyles = void 0; var _react = require("@emotion/react"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ // This is added `EuiPageSection.contentProps` to facilitate a full height layout whereby the // inner container will set its own height and be scrollable. const fullHeightContentStyles = (0, _react.css)` display: flex; flex-direction: column; flex: 1 0 auto; width: 100%; height: 100%; `; exports.fullHeightContentStyles = fullHeightContentStyles;