@scalar/use-codemirror 0.7.20 → 0.7.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @scalar/use-codemirror
2
2
 
3
+ ## 0.7.21
4
+
5
+ ### Patch Changes
6
+
7
+ - cd7afa70: fix: don't scale codemirror text on mobile webkit
8
+
3
9
  ## 0.7.20
4
10
 
5
11
  ### Patch Changes
package/dist/style.css CHANGED
@@ -15,6 +15,8 @@
15
15
  max-width: 100%;
16
16
  cursor: text;
17
17
  font-size: var(--theme-small, var(--default-theme-small));
18
+ /* Don't scale wide text on mobile because we let it scroll */
19
+ -webkit-text-size-adjust: 100%;
18
20
  }
19
21
 
20
22
  /** URL input */
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "vue",
12
12
  "vue3"
13
13
  ],
14
- "version": "0.7.20",
14
+ "version": "0.7.21",
15
15
  "engines": {
16
16
  "node": ">=18"
17
17
  },