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.
1 parent e48c94e commit 50daae0Copy full SHA for 50daae0
browser-extension/src/overtype/styles.js
@@ -21,7 +21,7 @@ export function generateStyles(options = {}) {
21
mobile = {},
22
} = options;
23
24
- fontFamily = "inherit"
+ fontFamily = "inherit";
25
fontSize = "var(--text-body-size-medium)";
26
27
// Generate mobile overrides
@@ -33,7 +33,7 @@ export function generateStyles(options = {}) {
33
.overtype-wrapper .overtype-preview {
34
${Object.entries(mobile)
35
.map(([prop, val]) => {
36
- const cssProp = prop.replace(/([A-Z])/g, "-$1").toLowerCase()
+ const cssProp = prop.replace(/([A-Z])/g, "-$1").toLowerCase();
37
return `${cssProp}: ${val} !important;`;
38
})
39
.join("\n ")}
0 commit comments