suanmei
5 years ago
committed by
拾邑
8 changed files with 110 additions and 947 deletions
File diff suppressed because it is too large
@ -1,5 +1,6 @@ |
|||
{ |
|||
"translation": { |
|||
"import_json": "Import JSON" |
|||
"import_json": "Import JSON", |
|||
"select_all": "Select All" |
|||
} |
|||
} |
|||
|
@ -1,5 +1,6 @@ |
|||
{ |
|||
"translation": { |
|||
"import_json": "导入 JSON" |
|||
"import_json": "导入 JSON", |
|||
"select_all": "全选" |
|||
} |
|||
} |
|||
|
@ -0,0 +1,40 @@ |
|||
import { css } from '@emotion/core'; |
|||
|
|||
const globalStyles = css` |
|||
.json-schema-editor { |
|||
* { |
|||
font-size: 12px; |
|||
} |
|||
|
|||
.ant-col { |
|||
:nth-child(2) { |
|||
text-align: center; |
|||
} |
|||
|
|||
:nth-child(3), |
|||
:nth-child(4) { |
|||
padding-right: 10px; |
|||
} |
|||
} |
|||
|
|||
.ant-input { |
|||
height: 30px; |
|||
} |
|||
|
|||
.ant-select { |
|||
width: 80%; |
|||
text-align: left; |
|||
} |
|||
|
|||
.editor-icon { |
|||
cursor: pointer; |
|||
|
|||
svg { |
|||
margin: 0 5px; |
|||
font-size: 14px; |
|||
} |
|||
} |
|||
} |
|||
`;
|
|||
|
|||
export default globalStyles; |
Loading…
Reference in new issue