Merge branch 'release/next-userspace' of github.com:urbit/urbit into release/next-userspace

This commit is contained in:
Matilde Park 2020-09-08 19:45:00 -04:00
commit c47c281743
3 changed files with 4 additions and 5 deletions

View File

@ -12,7 +12,7 @@ export const MarkdownField = ({ id, ...rest }: { id: string; } & Parameters<type
const [{ value }, { error, touched }, { setValue, setTouched }] = useField(id);
return (
<Box width="100%" display="flex" flexDirection="column" {...rest}>
<Box overflowY="hidden" width="100%" display="flex" flexDirection="column" {...rest}>
<MarkdownEditor
onFocus={() => setTouched(true)}
onBlur={() => setTouched(false)}

View File

@ -31,10 +31,11 @@ export function PostForm(props: PostFormProps) {
return (
<Box
width="100%"
height="100%"
p={[2, 4]}
display="grid"
justifyItems="start"
gridAutoRows="min-content"
gridTemplateRows={["64px 64px 1fr", "64px 1fr"]}
gridTemplateColumns={["100%", "1fr 1fr"]}
gridColumnGap={2}
gridRowGap={2}

View File

@ -32,7 +32,6 @@ const StatusBar = (props) => {
px={3}
>
<Row collapse>
{atHome ? null : (
<StatusBarItem mr={2} onClick={() => props.history.push('/')}>
<img
className='invert-d'
@ -41,7 +40,6 @@ const StatusBar = (props) => {
width='11'
/>
</StatusBarItem>
)}
<StatusBarItem mr={2} onClick={() => props.api.local.setOmnibox()}>
<Text display='inline-block' style={{ transform: 'rotate(180deg)' }}>
@ -53,7 +51,7 @@ const StatusBar = (props) => {
{metaKey}/
</Text>
</StatusBarItem>
<StatusBarItem
<StatusBarItem
onClick={() => props.history.push('/~groups')}
badge={Object.keys(invites).length > 0}>
<img