Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsMeBrianD committed Feb 12, 2025
1 parent c6b8d85 commit ff37c3f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/ui/core-components/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const config = {
builder: '@storybook/builder-vite'
},
async viteFinal(config) {
// TODO: This was being weird about the imports, so we did it dynamically
// This was being weird about the imports, so we did it dynamically
const tailwindcss = (await import('@tailwindcss/vite')).default;
return mergeConfig(config, {
plugins: [tailwindcss(), evidenceThemes()],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div
role="none"
class="print:hidden rounded py-1 px-3 my-4 mx-0 shadow-md text-xs font-mono flex justify-between transition-all duration-300 border
{status ? classLookup[status] : ''}"
{classLookup[status]}"
in:scale
out:fly|local={{ x: 1000, duration: 1000, delay: 0, opacity: 0.8 }}
on:click={dismiss}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@
<style>
:global(body) {
/* @apply bg-base-100 text-base-content; */
background-color: var(--color-base-100);
color: var(--color-base-content);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ html.theme-dark {
}
`.trim()

// const actual = await runPlugin(themes);
expect(baseOut.trim()).toEqual(expected);
});
});

0 comments on commit ff37c3f

Please sign in to comment.