Linting fixes

This commit is contained in:
Muaz Ahmad 2024-11-05 15:25:39 +05:00
parent ae3c345f75
commit 0b181cbd3d
2 changed files with 5 additions and 5 deletions

View file

@ -139,6 +139,7 @@ DROPDOWN
} }
} }
} }
.ant-input-affix-wrapper, .ant-input-outlined:hover, .ant-input-outlined:focus, .ant-input-outlined:focus-within { .ant-input-affix-wrapper, .ant-input-outlined:hover, .ant-input-outlined:focus, .ant-input-outlined:focus-within {
background-color: var(--theme-color-components-form-field-background); background-color: var(--theme-color-components-form-field-background);
} }
@ -216,12 +217,12 @@ DROPDOWN
.ant-modal { .ant-modal {
.ant-modal-content { .ant-modal-content {
padding: 0px; padding: 0;
} }
.ant-modal-header { .ant-modal-header {
padding: 16px 24px; padding: 16px 24px;
margin-bottom: 0px; margin-bottom: 0;
} }
.ant-modal-body { .ant-modal-body {

View file

@ -38,8 +38,7 @@ const AntdDefaultCustomTokens = {
colorBgBase: '#e2e8f0', colorBgBase: '#e2e8f0',
}; };
const AntdCustomTokens = (customTokens = AntdDefaultCustomTokens) => { const AntdCustomTokens = (customTokens = AntdDefaultCustomTokens) =>
return merge({}, AntdStaticTokens, customTokens); merge({}, AntdStaticTokens, customTokens);
};
export default AntdCustomTokens; export default AntdCustomTokens;