76cbcef4e6
* WIP Developer Settings * Access Tokens * scopes load fix * mapping to correct struct * Updates to Application * Update to apps.js to fix scopes error * Application table done * Token confirmation done. * Application Success * Fix ts * Darkmode fixes * Responsive fix * Fixes for PR * Pass size prop to Editable Avatar * Updates from PR comments * Section Header - TS Types * Add Typeguard to Delete Dialog * Add Description to scopes query * minor type guard fix * edit application cache update fix * Fix Dialog Expansion * Rename mutations to correct casing * Remove unneeded import for defineProps --------- Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com>
15 lines
437 B
JavaScript
15 lines
437 B
JavaScript
const speckleTheme = require('@speckle/tailwind-theme')
|
|
const { tailwindContentEntry } = 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}',
|
|
tailwindContentEntry(require)
|
|
],
|
|
plugins: [speckleTheme.default, formsPlugin]
|
|
}
|