CSS tweaks

This commit is contained in:
Tom Moor
2018-07-01 12:42:21 -07:00
parent 73d6238b4c
commit 933fa9732c
3 changed files with 5 additions and 4 deletions

View File

@@ -334,8 +334,8 @@ const MaxWidth = styled(Flex)`
height: 100%;
${breakpoint('tablet')`
padding: 0 24px;
margin: 60px auto;
padding: 0;
margin: 12px auto;
max-width: 46em;
`};
`;

View File

@@ -24,7 +24,7 @@ const Breadcrumb = observer(({ document, collections }: Props) => {
return (
<Wrapper justify="flex-start" align="center">
<CollectionName to={collectionUrl(collection.id)}>
<CollectionIcon color={collection.color} />{' '}
<CollectionIcon color={collection.color} expanded />{' '}
<span>{collection.name}</span>
</CollectionName>
{path.map(n => (

View File

@@ -185,7 +185,8 @@ const Actions = styled(Flex)`
border-bottom: 1px solid
${props => (props.isCompact ? props.theme.smoke : 'transparent')};
padding: 12px;
transition: padding 100ms ease-out;
transition: all 100ms ease-out;
transform: translate3d(0, 0, 0);
-webkit-backdrop-filter: blur(20px);
@media print {