Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mudrila committed Mar 11, 2024
1 parent 4bee749 commit 3b84fd4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Activity/ActivityDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function ActivityDescription({ activity, showFullDescription }: IActivity
<ProposalTitle activity={activity} />
{snapshotProposal.description ||
(metaData.description && (
<Box my={4}>
<Box my={4} minWidth="100%">
<Markdown
content={snapshotProposal.description || metaData.description}
truncate={!showFullDescription}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProposalCreate/ProposalMetadata.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function ProposalMetadata(props: AzoriusMetadataProps) {
onChange={e => setFieldValue('proposalMetadata.description', e.target.value)}
disabled={false}
placeholder={t('proposalDescriptionPlaceholder')}
rows={3}
rows={9}
/>
<InputComponent
label={t('proposalAdditionalResources')}
Expand Down
1 change: 1 addition & 0 deletions src/components/ui/proposal/Markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export default function Markdown({ truncate, content, collapsedLines = 6 }: IMar
<Text
noOfLines={2}
fontWeight={400}
minWidth="100%"
>
{plainText}
</Text>
Expand Down

0 comments on commit 3b84fd4

Please sign in to comment.