File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
src/frontend/apps/impress/src Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ and this project adheres to
3636- 🐛(frontend) fix base64 font #1324
3737- 🐛(backend) allow editor to delete subpages #1296
3838- 🐛(frontend) fix dnd conflict with tree and Blocknote #1328
39+ - 🐛(frontend) fix display bug on homepage #1332
3940
4041## [ 3.5.0] - 2025-07-31
4142
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export const Box = styled('div')<BoxProps>`
5151 ${ ( { $cursor } ) => $cursor && `cursor: ${ $cursor } ;` }
5252 ${ ( { $direction } ) => `flex-direction: ${ $direction || 'column' } ;` }
5353 ${ ( { $display, as } ) =>
54- `display: ${ $display || as ?. match ( 'span|input' ) ? 'inline-flex' : 'flex' } ;` }
54+ `display: ${ $display || ( as ?. match ( 'span|input' ) ? 'inline-flex' : 'flex' ) } ;` }
5555 ${ ( { $flex } ) => $flex && `flex: ${ $flex } ;` }
5656 ${ ( { $gap } ) => $gap && `gap: ${ $gap } ;` }
5757 ${ ( { $height } ) => $height && `height: ${ $height } ;` }
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ export const HomeSection = ({
126126 { title }
127127 </ Text >
128128 < Text
129+ as = "div"
129130 $variation = "700"
130131 $weight = "400"
131132 $size = { isSmallMobile ? 'ml' : 'md' }
You can’t perform that action at this time.
0 commit comments