36 lines
702 B
CSS
36 lines
702 B
CSS
* {
|
|
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;
|
|
}
|