This commit is contained in:
Tom Moor
2018-07-01 11:57:17 -07:00
parent 0e940741f6
commit f41e186da3
3 changed files with 4 additions and 6 deletions

View File

@@ -29,7 +29,7 @@ const Actions = styled(Flex)`
left: 0;
border-radius: 3px;
background: rgba(255, 255, 255, 0.9);
padding: 16px;
padding: 12px;
-webkit-backdrop-filter: blur(20px);
@media print {
@@ -38,7 +38,7 @@ const Actions = styled(Flex)`
${breakpoint('tablet')`
left: auto;
padding: ${props => props.theme.vpadding} ${props => props.theme.hpadding};
padding: 24px;
`};
`;

View File

@@ -26,7 +26,6 @@ import DocumentMove from './components/DocumentMove';
import UiStore from 'stores/UiStore';
import AuthStore from 'stores/AuthStore';
import DocumentsStore from 'stores/DocumentsStore';
import CollectionsStore from 'stores/CollectionsStore';
import LoadingPlaceholder from 'components/LoadingPlaceholder';
import LoadingIndicator from 'components/LoadingIndicator';
import CenteredContent from 'components/CenteredContent';
@@ -51,7 +50,6 @@ type Props = {
history: Object,
location: Location,
documents: DocumentsStore,
collections: CollectionsStore,
newDocument?: boolean,
auth: AuthStore,
ui: UiStore,

View File

@@ -27,8 +27,8 @@ const theme = {
black: '#000000',
blackLight: '#2f3336',
padding: '1.6vw 1.875vw',
vpadding: '1.6vw',
padding: '1.5vw 1.875vw',
vpadding: '1.5vw',
hpadding: '1.875vw',
sidebarWidth: '280px',
sidebarMinWidth: '250px',