File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 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';
2222import { Detail } from '../components/Detail' ;
2323import { EditableTitle } from '../components/EditableTitle' ;
2424import { Guard } from '../components/Guard' ;
25+ import { NavBarSpacer } from '../components/NavBarSpacer' ;
2526import { editURL } from '../helpers/navigation' ;
2627import { ResourceInline } from './ResourceInline' ;
2728import { ResourcePageProps } from './ResourcePage' ;
@@ -137,7 +138,7 @@ export function ChatRoomPage({ resource }: ResourcePageProps) {
137138 // in Firefox, scrollHeight only works if overflow is set to scroll
138139 const height = e . target . scrollHeight ;
139140 e . target . style . overflow = overflowStyle ;
140- const rowHeight = 25 ;
141+ const rowHeight = 30 ;
141142 const trows = Math . ceil ( height / rowHeight ) - 1 ;
142143
143144 if ( trows !== textAreaHight ) {
@@ -182,6 +183,7 @@ export function ChatRoomPage({ resource }: ResourcePageProps) {
182183 Send
183184 </ SendButton >
184185 </ MessageForm >
186+ < NavBarSpacer baseMargin = '2rem' position = 'bottom' />
185187 </ Guard >
186188 </ FullPageWrapper >
187189 ) ;
You can’t perform that action at this time.
0 commit comments