mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 21:59:43 +03:00
Linting fixes
This commit is contained in:
parent
ae3c345f75
commit
0b181cbd3d
2 changed files with 5 additions and 5 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue