- added NcModal.vue, NcActions.vue, NcButton.vue, FirstrunWizard.vue, Card.vue, Page0.vue, Page1.vue, Page2.vue, Page3.vue and some icons
Some checks failed
CI Pipeline / japa-tests (push) Failing after 51s

- added lime color inside tailwind.config.js
- added some utilities scripts needed for components
- npm updates
- changed postcss.config.js for nesting css styles
- added about function to NavBar.vue
This commit is contained in:
Kaimbacher 2023-12-21 09:30:21 +01:00
parent cefd9081ae
commit 87e9314b00
25 changed files with 3475 additions and 401 deletions

View file

@ -1,6 +1,7 @@
/** @type {import('tailwindcss').Config} */
const plugin = require('tailwindcss/plugin');
const defaultTheme = require('tailwindcss/defaultTheme');
const { registerables } = require('chart.js');
module.exports = {
content: ['./resources/**/*.{edge,js,ts,jsx,tsx,vue}'],
@ -13,7 +14,21 @@ module.exports = {
extend: {
colors: {
'primary': '#22C55E',
'primary-dark': '#DCFCE7',
'primary-dark': '#DCFCE7',
'lime': {
DEFAULT: '#BFCE40',
dark: 'rgba(5,46,55,0.7)',
50: '#FBFCF7',
100: '#F8FBE1',
200: '#EEF69E',
300: '#DCEC53',
400: '#A8D619',
500: '#65DC21',
600: '#429E04',
700: '#357C06',
800: '#295B09',
900: '#20450A',
},
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],