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 @@ -37,6 +37,7 @@ and this project adheres to
37
37
- 🐛(frontend) fix base64 font #1324
38
38
- 🐛(backend) allow editor to delete subpages #1296
39
39
- 🐛(frontend) fix dnd conflict with tree and Blocknote #1328
40
+ - 🐛(frontend) fix display bug on homepage #1332
40
41
41
42
## [ 3.5.0] - 2025-07-31
42
43
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export const Box = styled('div')<BoxProps>`
51
51
${ ( { $cursor } ) => $cursor && `cursor: ${ $cursor } ;` }
52
52
${ ( { $direction } ) => `flex-direction: ${ $direction || 'column' } ;` }
53
53
${ ( { $display, as } ) =>
54
- `display: ${ $display || as ?. match ( 'span|input' ) ? 'inline-flex' : 'flex' } ;` }
54
+ `display: ${ $display || ( as ?. match ( 'span|input' ) ? 'inline-flex' : 'flex' ) } ;` }
55
55
${ ( { $flex } ) => $flex && `flex: ${ $flex } ;` }
56
56
${ ( { $gap } ) => $gap && `gap: ${ $gap } ;` }
57
57
${ ( { $height } ) => $height && `height: ${ $height } ;` }
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ export const HomeSection = ({
126
126
{ title }
127
127
</ Text >
128
128
< Text
129
+ as = "div"
129
130
$variation = "700"
130
131
$weight = "400"
131
132
$size = { isSmallMobile ? 'ml' : 'md' }
You can’t perform that action at this time.
0 commit comments