cfa0b249d1
* backend seems to work * bigger menu support * FE nearly done * merge fix * ui changes * workspace invite disclaimer * project disclaimer * project invite viewer -> editor flow * extra minor fixes * Change project role input label * extra test assertions --------- Co-authored-by: Benjamin Ottensten <benjamin.ottensten@gmail.com>
16 lines
487 B
JavaScript
16 lines
487 B
JavaScript
const { plugin: speckleTheme } = require('@speckle/tailwind-theme')
|
|
const { tailwindContentEntries } = require('@speckle/tailwind-theme/tailwind-configure')
|
|
const formsPlugin = require('@tailwindcss/forms')
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{js,ts,jsx,tsx,vue}',
|
|
'./src/**/*.stories.{js,ts,jsx,tsx,vue}',
|
|
...tailwindContentEntries()
|
|
],
|
|
plugins: [speckleTheme, formsPlugin]
|
|
}
|