Skip to content

Commit

Permalink
Fix styles generation
Browse files Browse the repository at this point in the history
  • Loading branch information
arkadiuszbachorski committed Nov 5, 2024
1 parent a1e7536 commit dd63b13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion routes/~__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { auth } from '@/modules/firebase/app'
import { AuthProvider } from '@/modules/firebase/AuthProvider'
import { ReactQueryClientProvider } from '@/modules/query/ReactQueryClientProvider'
import { routes } from '@/modules/routes'
import '@stanfordspezi/spezi-web-design-system/style.css'
import '../modules/globals.css'

const Root = () => (
Expand Down
5 changes: 4 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ import tailwindCssAnimate from 'tailwindcss-animate'

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./{app,pages,components,routes,modules}/**/*.{js,ts,jsx,tsx,mdx}'],
content: [
'./{app,pages,components,routes,modules}/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@stanfordspezi/spezi-web-design-system/dist/**/*.js',

Check warning on line 15 in tailwind.config.ts

View check run for this annotation

Codecov / codecov/patch

tailwind.config.ts#L14-L15

Added lines #L14 - L15 were not covered by tests
],
theme: {
extend: {
colors: tailwindColors,
Expand Down

0 comments on commit dd63b13

Please sign in to comment.