feedback fix

This commit is contained in:
ronronscelestes 2021-11-09 17:21:43 +01:00
parent faa1c452da
commit b506666d44
2 changed files with 12 additions and 7 deletions

View File

@ -132,10 +132,8 @@ const CenterTypography = styled(Typography)`
text-align: center;
`;
const IllustrationContainer = styled(Box)`
img {
width: ${190 / 16}rem;
}
const Img = styled.img`
width: ${190 / 16}rem;
`;
const StackCentered = styled(Stack)`
@ -174,9 +172,15 @@ const MarketPlacePage = () => {
paddingTop={10}
paddingBottom={10}
>
<IllustrationContainer paddingBottom={7}>
<img alt="marketplace illustration" src={MarketplacePicture} />
</IllustrationContainer>
<Box paddingBottom={7}>
<Img
alt={formatMessage({
id: 'app.components.InstallPluginPage.illustration',
defaultMessage: 'marketplace illustration',
})}
src={MarketplacePicture}
/>
</Box>
<Typography variant="alpha">
{formatMessage({
id: 'app.components.InstallPluginPage.coming-soon.1',

View File

@ -266,6 +266,7 @@
"app.components.InstallPluginPage.Download.title": "Downloading...",
"app.components.InstallPluginPage.description": "Extend your app effortlessly.",
"app.components.InstallPluginPage.helmet": "Marketplace - Plugins",
"app.components.InstallPluginPage.illustration": "marketplace illustration",
"app.components.InstallPluginPage.title": "Marketplace",
"app.components.InstallPluginPage.subtitle": "Get more out of Strapi",
"app.components.InstallPluginPage.coming-soon.1": "A new way to make Strapi awesome.",