Skip to content

Commit 529e7f1

Browse files
committed
✨(frontend) reduce no access image size from 450 to 300
image now matches mockups (300x300px) Signed-off-by: Cyril <[email protected]>
1 parent 51c5c4e commit 529e7f1

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ and this project adheres to
4545
- 🔒(frontend) prevent readers from changing callout emoji #1449
4646
- 🐛(frontend) fix overlapping placeholders in multi-column layout #1455
4747
- 🐛(backend) filter invitation with case insensitive email
48+
- 🐛(frontend) reduce no access image size from 450 to 300 #1463
4849

4950
## [3.7.0] - 2025-09-12
5051

src/frontend/apps/impress/src/features/docs/doc-management/components/DocPage403.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ export const DocPage403 = ({ id }: DocProps) => {
5959
className="c__image-system-filter"
6060
src={img403}
6161
alt={t('Image 403')}
62+
width={300}
63+
height={300}
6264
style={{
6365
maxWidth: '100%',
6466
height: 'auto',

src/frontend/apps/impress/src/pages/401.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ const Page: NextPageWithLayout = () => {
4646
className="c__image-system-filter"
4747
src={img401}
4848
alt=""
49+
width={300}
50+
height={300}
4951
style={{
5052
maxWidth: '100%',
5153
height: 'auto',

src/frontend/apps/impress/src/pages/404.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ const Page: NextPageWithLayout = () => {
4242
className="c__image-system-filter"
4343
src={img403}
4444
alt=""
45+
width={300}
46+
height={300}
4547
style={{
4648
maxWidth: '100%',
4749
height: 'auto',

0 commit comments

Comments
 (0)