File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/tailwindcss-language-service/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -952,7 +952,7 @@ function stringifyDecls(
952
952
const px = showPixelEquivalents
953
953
? remToPx ( value , rootFontSize )
954
954
: undefined
955
- return `${ prop } : ${ value } ${ px ? ` /* ${ px } */` : '' } ;`
955
+ return `${ prop } : ${ value } ${ px ? `/* ${ px } */` : '' } ;`
956
956
} )
957
957
. join ( ' ' )
958
958
)
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export function stringifyCss(
61
61
const propStr = ensureArray ( obj [ curr ] )
62
62
. map ( ( val ) => {
63
63
const px = showPixelEquivalents ? remToPx ( val , rootFontSize ) : undefined
64
- return `${ indentStr + indent } ${ curr } : ${ val } ${ px ? ` /* ${ px } */` : '' } ;`
64
+ return `${ indentStr + indent } ${ curr } : ${ val } ${ px ? `/* ${ px } */` : '' } ;`
65
65
} )
66
66
. join ( '\n' )
67
67
return `${ acc } ${ i === 0 ? '' : '\n' } ${ propStr } `
You can’t perform that action at this time.
0 commit comments