mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Cipper: fixed display cutoff due to increase in browser scale (#7757)
This commit is contained in:
parent
057ac550bd
commit
b832930512
@ -116,7 +116,13 @@ async function main() {
|
||||
|
||||
console.info('Popup: Creating React app...');
|
||||
|
||||
ReactDOM.render(<Provider store={store}><App /></Provider>, document.getElementById('root'));
|
||||
ReactDOM.render(
|
||||
<div style = {{ maxHeight: screen.height * 0.65, overflowY: 'scroll' }}>
|
||||
<Provider store={store}>
|
||||
<App />
|
||||
</Provider>
|
||||
</div>,
|
||||
document.getElementById('root'));
|
||||
}
|
||||
|
||||
main().catch((error) => {
|
||||
|
Loading…
Reference in New Issue
Block a user