mirror of https://github.com/waku-org/js-waku.git
Attempt to fix double scrollbar issue
This commit is contained in:
parent
973fd95df9
commit
2d037c3e46
|
@ -43,7 +43,10 @@ export default function App() {
|
|||
}, [stateWaku, stateMessages]);
|
||||
|
||||
return (
|
||||
<div className="chat-app">
|
||||
<div
|
||||
className="chat-app"
|
||||
style={{ height: '100vh', width: '100vw', overflow: 'hidden' }}
|
||||
>
|
||||
<WakuContext.Provider value={{ waku: stateWaku }}>
|
||||
<Room
|
||||
nick={nick}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@import-normalize; /* bring in normalize.css styles */
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
|
|
Loading…
Reference in New Issue