mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 10:16:32 -05:00
Make help modal bigger
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
7ca23d8ade
commit
6fe8967c44
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ export const HelpModal: React.FC<HelpModalProps> = ({ show, onHide }) => {
|
||||||
const tabTitle = useMemo(() => t('editor.documentBar.help') + ' - ' + t(`editor.help.${tab}`), [t, tab])
|
const tabTitle = useMemo(() => t('editor.documentBar.help') + ' - ' + t(`editor.help.${tab}`), [t, tab])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<CommonModal icon={'question-circle'} show={show} onHide={onHide} title={tabTitle}>
|
<CommonModal size={'lg'} icon={'question-circle'} show={show} onHide={onHide} title={tabTitle}>
|
||||||
<Modal.Body>
|
<Modal.Body>
|
||||||
<nav className='nav nav-tabs'>
|
<nav className='nav nav-tabs'>
|
||||||
<Button
|
<Button
|
||||||
|
|
Loading…
Reference in a new issue