File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import Markdown from '../components/datatypes/Markdown';
22
22
import { Detail } from '../components/Detail' ;
23
23
import { EditableTitle } from '../components/EditableTitle' ;
24
24
import { Guard } from '../components/Guard' ;
25
+ import { NavBarSpacer } from '../components/NavBarSpacer' ;
25
26
import { editURL } from '../helpers/navigation' ;
26
27
import { ResourceInline } from './ResourceInline' ;
27
28
import { ResourcePageProps } from './ResourcePage' ;
@@ -137,7 +138,7 @@ export function ChatRoomPage({ resource }: ResourcePageProps) {
137
138
// in Firefox, scrollHeight only works if overflow is set to scroll
138
139
const height = e . target . scrollHeight ;
139
140
e . target . style . overflow = overflowStyle ;
140
- const rowHeight = 25 ;
141
+ const rowHeight = 30 ;
141
142
const trows = Math . ceil ( height / rowHeight ) - 1 ;
142
143
143
144
if ( trows !== textAreaHight ) {
@@ -182,6 +183,7 @@ export function ChatRoomPage({ resource }: ResourcePageProps) {
182
183
Send
183
184
</ SendButton >
184
185
</ MessageForm >
186
+ < NavBarSpacer baseMargin = '2rem' position = 'bottom' />
185
187
</ Guard >
186
188
</ FullPageWrapper >
187
189
) ;
You can’t perform that action at this time.
0 commit comments