Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@ const AppDetailsPageHeader = ({ app }: { app: App }): ReactElement => {
<AppAvatar size='x124' mie='x20' iconFileContent={iconFileContent} iconFileData={iconFileData} />
<Box display='flex' flexDirection='column'>
<Box display='flex' flexDirection='row' alignItems='center' mbe='x8'>
<Box fontScale='h1' mie='x8'>
<Box fontScale='h1' mie='x8' color='default'>
Comment thread
dougfabris marked this conversation as resolved.
Outdated
{name}
</Box>
{bundledIn && Boolean(bundledIn.length) && <BundleChips bundledIn={bundledIn} />}
</Box>
{app?.shortDescription && <Box mbe='x16'>{app.shortDescription}</Box>}
{app?.shortDescription && (
<Box mbe='x16' color='default'>
{app.shortDescription}
</Box>
)}

<Box display='flex' flexDirection='row' alignItems='center' mbe='x16'>
<AppStatus app={app} installed={installed} isAppDetailsPage />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ const AppDetails = ({ app }: { app: AppInfo }): ReactElement => {
<Box fontScale='h4' mbe='x8' color='titles-labels'>
{t('Description')}
</Box>
<Box dangerouslySetInnerHTML={{ __html: isMarkdown ? detailedDescription.rendered : description }} withRichContent />
<Box
dangerouslySetInnerHTML={{ __html: isMarkdown ? detailedDescription.rendered : description }}
withRichContent
color='default'
/>
</Box>

<Box is='section'>
Expand All @@ -66,7 +70,7 @@ const AppDetails = ({ app }: { app: AppInfo }): ReactElement => {
</Box>

<Box is='section'>
<Box fontScale='h4' mbe='x8'>
<Box fontScale='h4' mbe='x8' color='default'>
{t('Contact')}
</Box>
<Box display='flex' flexDirection='row' flexGrow={1} justifyContent='space-around' flexWrap='wrap'>
Expand Down