mirror of
https://github.com/philips/supernote-obsidian-plugin.git
synced 2026-07-22 09:50:25 +00:00
Add margin around page container so that the recognized text of one page doesn't run into that of the next page. 1.2em seems like a reasonable amount for readability. Could maybe go slightly higher. I also added some margin on the bottom of the recognized text so it's not too close to the image of the page.
31 lines
No EOL
518 B
CSS
31 lines
No EOL
518 B
CSS
.theme-dark img[alt*="supernote-invert-dark"] {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.theme-light img[alt*="supernote-invert-light"] {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.theme-dark img.supernote-invert-dark {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.theme-light img.supernote-invert-light {
|
|
filter: invert(1);
|
|
}
|
|
|
|
button.mod-cta {
|
|
display: block;
|
|
}
|
|
|
|
.page-recognized-text {
|
|
user-select: text;
|
|
white-space: pre-line;
|
|
margin: 1.2em 0;
|
|
}
|
|
|
|
div.page-container {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
margin: 1.2em;
|
|
} |