35 lines
794 B
JavaScript
35 lines
794 B
JavaScript
import styled from 'styled-components';
|
|
import {
|
|
mdPaddingX,
|
|
} from '/imports/ui/stylesheets/styled-components/general';
|
|
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
|
|
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
|
|
import CommonHeader from '/imports/ui/components/common/control-header/component';
|
|
|
|
const Notes = styled.div`
|
|
background-color: ${colorWhite};
|
|
padding: ${mdPaddingX};
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
|
|
${({ isChrome }) => isChrome && `
|
|
transform: translateZ(0);
|
|
`}
|
|
|
|
@media ${smallOnly} {
|
|
transform: none !important;
|
|
}
|
|
`;
|
|
|
|
const Header = styled(CommonHeader)`
|
|
padding-bottom: .2rem;
|
|
`;
|
|
|
|
export default {
|
|
Notes,
|
|
Header,
|
|
};
|