Initial commit with Email Import Wizard and Task Processor updates

This commit is contained in:
2026-05-04 08:02:11 +02:00
commit effdc5d59f
170 changed files with 67739 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root {
min-height: 100vh;
}
/* Light mode body background — extra hell für minimale Spiegelung */
[data-theme="light"] body {
background: #f8f9fc;
}
[data-theme="dark"] body {
background: #141414;
}
/* Fix for font size in Ant Design components */
.ant-select,
.ant-select-selection-search-input,
.ant-select-item,
.ant-input,
.ant-input-affix-wrapper,
.ant-picker,
.ant-picker-input > input {
font-size: 14px !important;
}