Skip to content

Commit 4cee5a1

Browse files
authored
Merge pull request #6 from coldenate/main
🐛 text wrap line height issue
2 parents 54a6351 + 661850a commit 4cee5a1

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

public/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"version": {
99
"major": 0,
1010
"minor": 0,
11-
"patch": 4
11+
"patch": 5
1212
},
1313
"description": "Give presentations directly from your notes in RemNote",
1414
"requestNative": false,

src/lib/css.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ export const presentationCSS = `
77
--line-height: 36px
88
}
99
10+
.EditorContainer{
11+
line-height: normal !important;
12+
}
13+
1014
.rem {
1115
margin: 25px 0px 25px 0px;
1216
}
@@ -17,14 +21,14 @@ export const presentationCSS = `
1721
1822
.perfect-circle {
1923
--target-width: 20px;
20-
margin: 0px 10px 0 0px;
24+
margin-top: 20px;
2125
}
2226
2327
.rn-doc-title {
2428
font-size: 50px;
2529
margin: 0 0 100px 0
2630
}
27-
31+
2832
::-webkit-scrollbar-thumb {
2933
background: none;
3034
}
@@ -43,7 +47,7 @@ export const presentationCSS = `
4347
4448
.rn-help-button {
4549
display: none;
46-
}
50+
}
4751
4852
.six-dot {
4953
display: none;
@@ -88,4 +92,4 @@ export const presentationCSS = `
8892
.rn-editor__rem__hidden-children {
8993
display: none;
9094
}
91-
`
95+
`;

0 commit comments

Comments
 (0)