This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.addEventListener('beforeunload', (event) => { | |
| // Cancel the event as stated by the standard. | |
| event.preventDefault(); | |
| // Chrome requires returnValue to be set. | |
| event.returnValue = ''; | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| section.hero-wrap h2.live-description { | |
| position: relative !important; | |
| display: block !important; | |
| width: 100% !important; | |
| max-width: 816px !important; | |
| margin: 0 auto !important; | |
| text-align: center!important; | |
| font-family: Arial !important; | |
| font-style: normal !important; | |
| font-weight: 400 !important; |