/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import styled from '@essex/styled-components' const MAX_HEIGHT = 700 export const Container = styled.div` width: 400px; max-height: ${MAX_HEIGHT - 20}px; overflow: hidden auto; padding: 4px 12px 12px 8px; `