Environment
- Platform: Windows
- Platform version: 10
- App Version: 5.5.3
hello, I have question!
I want to change font-family in preview section and exported PDF so create style.less file in AppData > inkdrop folder.
.editor-layout {
font-family: 'fontname something' !important;
}
// or
* {
font-family: 'fontname something' !important;
}
// or
@media print {
strong {
color: red !important; // it doesn't work either
}
font-family: 'fontname something' !important;
}
But it doesn’t work. How can I solve this problem?
I’d greatly appreciate any help, thank you!