|
|
@@ -67,12 +67,14 @@ const PagePresentationModal = (): JSX.Element => {
|
|
|
className={`grw-presentation-modal ${styles['grw-presentation-modal']}`}
|
|
|
>
|
|
|
<div className="grw-presentation-controls d-flex">
|
|
|
- <button className="close btn-fullscreen" type="button" aria-label="fullscreen" onClick={toggleFullscreenHandler}>
|
|
|
- <i className={`${fullscreen.active ? 'icon-size-actual' : 'icon-size-fullscreen'}`} aria-hidden></i>
|
|
|
- </button>
|
|
|
- <button className="close btn-close" type="button" aria-label="close" onClick={closeHandler}>
|
|
|
- <i className="ti ti-close" aria-hidden></i>
|
|
|
+ <button
|
|
|
+ className={`btn ${fullscreen.active ? 'icon-size-actual' : 'icon-size-fullscreen'}`}
|
|
|
+ type="button"
|
|
|
+ aria-label="fullscreen"
|
|
|
+ onClick={toggleFullscreenHandler}
|
|
|
+ >
|
|
|
</button>
|
|
|
+ <button className="btn-close" type="button" aria-label="Close" onClick={closeHandler}></button>
|
|
|
</div>
|
|
|
<ModalBody className="modal-body d-flex justify-content-center align-items-center">
|
|
|
{ rendererOptions != null && (
|