/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ // This file defines the styles for the larger container elements like page-container, section and container. .ember-application > .ember-view { display: flex; flex-direction: column; } .page-container { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; } .section { display: flex; flex-grow: 1; flex-direction: column; padding: 0 $size-4; > .container { display: flex; flex-grow: 1; flex-direction: column; width: 100%; > .columns { flex-grow: 1; } } } .container { flex-grow: 1; margin: 0 auto; max-width: 1024px; position: relative; width: auto; }