Merge branch 'master' of github.com:jorilallo/atlas into update-slate

This commit is contained in:
Tom Moor
2017-12-08 20:22:07 -08:00
24 changed files with 289 additions and 151 deletions

View File

@@ -227,6 +227,10 @@ const Header = styled(Flex)`
flex-shrink: 0;
align-items: flex-end;
${({ readOnly }) => !readOnly && 'cursor: text;'};
@media print {
display: none;
}
`;
const StyledEditor = styled(Editor)`

View File

@@ -93,6 +93,10 @@ const Wrapper = styled.div`
right: 0;
top: 150px;
z-index: 100;
@media print {
display: none;
}
`;
const Anchor = styled.a`

View File

@@ -197,6 +197,10 @@ const Bar = styled(Flex)`
left: auto;
right: -100%;
}
@media print {
display: none;
}
`;
const HiddenInput = styled.input`

View File

@@ -153,4 +153,8 @@ const Menu = styled.div`
transform: translateY(-6px) scale(1);
opacity: 1;
`};
@media print {
display: none;
}
`;