interface: full width images for notebook posts

This commit is contained in:
Mackenzie Davidson 2022-08-31 18:08:07 -04:00
parent e6996cb77c
commit 4174fd6829

View File

@ -1,5 +1,5 @@
import { import {
Box, Box
} from '@tlon/indigo-react'; } from '@tlon/indigo-react';
import React from 'react'; import React from 'react';
import useSettingsState from '~/logic/state/settings'; import useSettingsState from '~/logic/state/settings';
@ -103,7 +103,7 @@ function RemoteContentInner(props: RemoteContentProps) {
return ( return (
<Box mt={1} mb={2} flexShrink={0}> <Box mt={1} mb={2} flexShrink={0}>
<RemoteContentWrapper {...wrapperProps} noOp={transcluded} replaced> <RemoteContentWrapper {...wrapperProps} noOp={transcluded} replaced>
<RemoteContentImageEmbed url={url} /> <RemoteContentImageEmbed url={url} stretch={tall} />
</RemoteContentWrapper> </RemoteContentWrapper>
</Box> </Box>
); );