mirror of
https://github.com/OFFIS-ESC/constellation-analyzer
synced 2026-01-27 15:53:42 +00:00
Implements toast notifications from UX_ANALYSIS.md to provide clear, non-intrusive feedback for user actions. Features: - Toast store with Zustand for global state management - Four toast variants: success, error, info, warning - Auto-dismiss after configurable duration (default 4s) - Max 3 visible toasts with FIFO queue - Smart positioning that avoids right panel overlap - Smooth slide-in/fade-out animations Notifications added for: - File operations (import/export success/errors) - Document operations (create/delete/rename/duplicate) - Workspace operations (import/export) Toast container dynamically repositions based on right panel state to ensure toasts never overlap with critical UI elements. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
782 B
JavaScript
35 lines
782 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#f0f9ff',
|
|
100: '#e0f2fe',
|
|
200: '#bae6fd',
|
|
300: '#7dd3fc',
|
|
400: '#38bdf8',
|
|
500: '#0ea5e9',
|
|
600: '#0284c7',
|
|
700: '#0369a1',
|
|
800: '#075985',
|
|
900: '#0c4a6e',
|
|
}
|
|
},
|
|
keyframes: {
|
|
'slide-in-right': {
|
|
'0%': { transform: 'translateX(100%)', opacity: '0' },
|
|
'100%': { transform: 'translateX(0)', opacity: '1' },
|
|
},
|
|
},
|
|
animation: {
|
|
'slide-in-right': 'slide-in-right 0.3s ease-out',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|