Ionaru / Ionaru/easy-markdown-editor
Set Fullscreen z-index
Open
- Dominant language
- JavaScript
- Stars
- 3.1k
- Forks
- 363
- PR merge metrics
- No merged PRs in 30d
Description
When opening the fullscreen mode, my fixed header navigation is on top of the editor. I've fixed that via css, it would be nice to have a config option for this, or at least some larger z-index value.
```scss
.EasyMDEContainer {
.editor-toolbar {
&.fullscreen {
z-index: 100;
}
}
.CodeMirror {
&.CodeMirror-fullscreen {
z-index: 100;
}
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.