appleple / react-modal-video

Accessible React Modal Video Component
https://appleple.github.io/react-modal-video/
MIT License
177 stars 86 forks source link

Override style classes #25

Open gorlitzer opened 4 years ago

gorlitzer commented 4 years ago

Ehy, I'm trying to override default style but no luck.. can you provide a code snippet please?

hanno-jonlay commented 3 years ago

For anyone looking for something similar, a quick and somewhat hacky workaround:

Inside your ModalVideoComponent.js:

import './modalVideoOverride.css';

Inside ./modalVideoOverride.css:

.modal-video-body {
  max-width: 80%;
}