diff --git a/app/components/Actions/Actions.js b/app/components/Actions/Actions.js index ae0a7cac1..3ac624b85 100644 --- a/app/components/Actions/Actions.js +++ b/app/components/Actions/Actions.js @@ -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; `}; `; diff --git a/app/scenes/Document/Document.js b/app/scenes/Document/Document.js index 519aee49b..937ccf08c 100644 --- a/app/scenes/Document/Document.js +++ b/app/scenes/Document/Document.js @@ -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, diff --git a/shared/styles/theme.js b/shared/styles/theme.js index e301fea2b..7c71623ff 100644 --- a/shared/styles/theme.js +++ b/shared/styles/theme.js @@ -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',