Skip to content

Commit 50daae0

Browse files
committed
more diff minimization
1 parent e48c94e commit 50daae0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

browser-extension/src/overtype/styles.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function generateStyles(options = {}) {
2121
mobile = {},
2222
} = options;
2323

24-
fontFamily = "inherit"
24+
fontFamily = "inherit";
2525
fontSize = "var(--text-body-size-medium)";
2626

2727
// Generate mobile overrides
@@ -33,7 +33,7 @@ export function generateStyles(options = {}) {
3333
.overtype-wrapper .overtype-preview {
3434
${Object.entries(mobile)
3535
.map(([prop, val]) => {
36-
const cssProp = prop.replace(/([A-Z])/g, "-$1").toLowerCase()
36+
const cssProp = prop.replace(/([A-Z])/g, "-$1").toLowerCase();
3737
return `${cssProp}: ${val} !important;`;
3838
})
3939
.join("\n ")}

0 commit comments

Comments
 (0)