Files
Archivum/frontend/tailwind.config.js
Björn Blomberg a46d56e2fc feat: integrate @tailwindcss/typography and enhance folder picker functionality
- Added @tailwindcss/typography dependency to package.json and tailwind.config.js.
- Updated FolderPicker.vue to include additional properties (isGitRepo, hasDocuments) for directories.
- Enhanced Sidebar.vue with folder creation and document handling features, including drag-and-drop functionality.
- Implemented createFolder and moveDocument mutations in gql.ts for managing folder and document operations.
- Added logic to handle folder creation and document creation prompts in Sidebar.vue.
- Updated the layout and interactions in Sidebar.vue to improve user experience.
2026-04-13 10:55:02 +02:00

26 lines
743 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui'],
mono: ['JetBrains Mono', 'ui-monospace', 'monospace'],
},
colors: {
// Accent color driven by CSS variables set by the theme store.
accent: {
400: 'rgb(var(--accent-400) / <alpha-value>)',
500: 'rgb(var(--accent-500) / <alpha-value>)',
600: 'rgb(var(--accent-600) / <alpha-value>)',
700: 'rgb(var(--accent-700) / <alpha-value>)',
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}