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 {
background-color: var(--theme-color-components-form-field-background);
}
@ -216,12 +217,12 @@ DROPDOWN
.ant-modal {
.ant-modal-content {
padding: 0px;
padding: 0;
}
.ant-modal-header {
padding: 16px 24px;
margin-bottom: 0px;
margin-bottom: 0;
}
.ant-modal-body {

View file

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