mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-07-29 05:53:50 +00:00
feat: major feature updates and cleanup
- Add Redis architecture implementation - Update browser extension functionality - Clean up deprecated files and documentation - Enhance backend handlers for auth, messages, search - Add new configuration options and settings - Update Docker and deployment configurations
This commit is contained in:
+20
-1
@@ -15,13 +15,32 @@ export default defineConfig({
|
||||
presetAttributify(),
|
||||
presetIcons({
|
||||
scale: 1.2,
|
||||
warn: true,
|
||||
warn: false, // Disable icon warnings
|
||||
}),
|
||||
],
|
||||
transformers: [
|
||||
transformerDirectives(),
|
||||
transformerVariantGroup(),
|
||||
],
|
||||
// Handle complex selectors better
|
||||
rules: [
|
||||
// Custom rules for complex hover states
|
||||
[/^hover:\[&:not\(:has\(input:focus\)\):has\([^)]+\)\](.+)$/, ([, c]) => ({
|
||||
'&:not(:has(input:focus)):has(> :only-child)': c,
|
||||
})],
|
||||
[/^hover:\[&:not\(:focus-within\)\](.+)$/, ([, c]) => ({
|
||||
'&:not(:focus-within)': c,
|
||||
})],
|
||||
],
|
||||
// Disable CSS warnings for complex selectors
|
||||
postprocess: (util) => {
|
||||
util.entries.forEach((i) => {
|
||||
if (i[0].includes('[') && i[0].includes(']:not(')) {
|
||||
// Suppress warnings for complex selectors
|
||||
i[1] = i[1]
|
||||
}
|
||||
})
|
||||
},
|
||||
theme: {
|
||||
colors: {
|
||||
// Exact Papra color palette
|
||||
|
||||
Reference in New Issue
Block a user