Initial commit with Email Import Wizard and Task Processor updates
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user