We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 146783b + 6ff954d commit 76809a6Copy full SHA for 76809a6
packages/codemirror/style/index.css
@@ -65,7 +65,23 @@
65
66
67
.CodeMirror-cursor {
68
- border-left: 1px solid var(--jp-editor-cursor-color);
+ border-left: 1.4px solid var(--jp-editor-cursor-color);
69
+}
70
+
71
72
+// When zoomed out 67% and 33% on a screen of 1440 width x 900 height
73
+@media screen and (min-width: 2138px) and (max-width: 4319px) {
74
+ .CodeMirror-cursor {
75
+ border-left: 2px solid var(--jp-editor-cursor-color);
76
+ }
77
78
79
80
+// When zoomed out less than 33%
81
+@media screen and (min-width: 4320px) {
82
83
+ border-left: 4px solid var(--jp-editor-cursor-color);
84
85
}
86
87
0 commit comments