-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
177 additions
and
4,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Ignore artifacts: | ||
.nuxt | ||
.output | ||
dist | ||
node-modules | ||
package-lock.json | ||
storybook-static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,52 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
import defaultColors from "tailwindcss/colors.js"; | ||
import defaultTheme from "tailwindcss/defaultTheme.js"; | ||
import defaultColors from 'tailwindcss/colors.js' | ||
import defaultTheme from 'tailwindcss/defaultTheme.js' | ||
|
||
export default { | ||
darkMode: "class", | ||
darkMode: 'class', | ||
content: [ | ||
"./assets/**/*.{scss,css}", | ||
"./components/**/*.{js,vue,ts}", | ||
"./components/**/*.stories.{js,vue,ts}", | ||
"./layouts/**/*.vue", | ||
"./pages/**/*.vue", | ||
"./plugins/**/*.{js,ts}", | ||
"./nuxt.config.{js,ts}", | ||
"./app.vue", | ||
'./src/assets/**/*.{scss,css}', | ||
'./src/**/*.{js,vue,ts}', | ||
'./src/**/*.stories.{js,vue,ts}', | ||
'./src/app.vue' | ||
], | ||
safelist: [ | ||
{ | ||
pattern: /^text-/, | ||
}, | ||
pattern: /^text-/ | ||
} | ||
], | ||
variants: { | ||
extend: { | ||
opacity: ["disabled"], | ||
borderWidth: ["hover", "first"], | ||
ringWidth: ["hover"], | ||
}, | ||
opacity: ['disabled'], | ||
borderWidth: ['hover', 'first'], | ||
ringWidth: ['hover'] | ||
} | ||
}, | ||
theme: { | ||
extend: { | ||
fontFamily: { | ||
sans: ["Nunito", defaultTheme.fontFamily.sans], | ||
sans: ['Nunito', defaultTheme.fontFamily.sans] | ||
}, | ||
transitionProperty: { | ||
height: "height", | ||
height: 'height' | ||
}, | ||
boxShadow: { | ||
bottom: "inset 0 -38px 38px -38px #ececec", | ||
bottom: 'inset 0 -38px 38px -38px #ececec' | ||
}, | ||
fontSize: { | ||
"2xs": ["0.6rem", { lineHeight: "1rem" }], | ||
}, | ||
'2xs': ['0.6rem', { lineHeight: '1rem' }] | ||
} | ||
}, | ||
fontWeight: { | ||
...defaultTheme.fontWeight, | ||
...defaultTheme.fontWeight | ||
}, | ||
colors: { | ||
...defaultColors, | ||
transparent: "transparent", | ||
current: "currentColor", | ||
transparent: 'transparent', | ||
current: 'currentColor', | ||
purple: defaultColors.indigo, | ||
red: defaultColors.rose, | ||
orange: defaultColors.amber, | ||
}, | ||
}, | ||
}; | ||
orange: defaultColors.amber | ||
} | ||
} | ||
} |
Oops, something went wrong.