Skip to content

Commit

Permalink
Fix test site styling
Browse files Browse the repository at this point in the history
  • Loading branch information
nmanu1 committed Dec 8, 2023
1 parent a5e8a64 commit e41adc6
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions test-site/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
const tailwindConfig = require('../.storybook/tailwind.config.cjs');
const tailwindConfig = require('../tailwind.config.cjs');
const { ComponentsContentPath } = require('@yext/search-ui-react');

module.exports = {
...tailwindConfig,
content: [
'./src/**/*.{ts,tsx}',
ComponentsContentPath
]
],
theme: {
...tailwindConfig.theme,
extend: {
...tailwindConfig.theme.extend,
borderColor: {
DEFAULT: 'black'
}
}
}
};

0 comments on commit e41adc6

Please sign in to comment.