Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrypticace committed Mar 5, 2024
1 parent 5f91f5c commit ff6ad9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -64,7 +64,7 @@ export async function loadDesignSystem(
if (str === null) return postcss.root()

try {
return postcss.parse(str)
return postcss.parse(str.trimEnd())
} catch {
return null
}
Expand Down
Expand Up @@ -442,7 +442,7 @@ withFixture('v4/basic', (c) => {
detail: 'text-transform: uppercase',
documentation: {
kind: 'markdown',
value: '```css\n.uppercase {\n text-transform: uppercase;\n}\n```',
value: '```css\n.uppercase {\n text-transform: uppercase;\n}\n```',
},
})
})
Expand Down

0 comments on commit ff6ad9b

Please sign in to comment.