Files
ThriveX-Admin/src/pages/Create/components/Editor/index.scss

29 lines
548 B
SCSS
Raw Normal View History

2024-11-06 14:18:06 +08:00
@import "./markdown.scss";
2024-11-02 21:04:13 +08:00
.bytemd {
2024-11-04 19:22:11 +08:00
height: calc(100vh - 200px);
2024-11-04 13:53:29 +08:00
border: none;
2024-12-09 15:29:16 +08:00
z-index: 99999;
2024-12-10 13:00:38 +08:00
@apply bg-white dark:bg-boxdark text-black dark:text-white;
2024-11-04 13:53:29 +08:00
.bytemd-toolbar {
background-color: transparent;
2024-12-10 13:00:38 +08:00
@apply dark:border-strokedark;
}
.bytemd-preview {
@apply dark:border-strokedark;
}
.bytemd-status{
@apply dark:border-strokedark;
}
.CodeMirror {
@apply dark:text-white bg-white dark:bg-boxdark;
2024-11-04 13:53:29 +08:00
}
2024-12-30 01:17:45 +08:00
.icon {
@apply dark:fill-white;
}
2024-11-02 21:04:13 +08:00
}