You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
440 B
31 lines
440 B
import { css } from '@emotion/core';
|
|
|
|
const globalStyles = css`
|
|
.json-schema-editor {
|
|
* {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ant-col {
|
|
:nth-of-type(2) {
|
|
text-align: center;
|
|
}
|
|
|
|
:nth-of-type(3),
|
|
:nth-of-type(4) {
|
|
padding-right: 10px;
|
|
}
|
|
}
|
|
|
|
.ant-input {
|
|
height: 30px;
|
|
}
|
|
|
|
.ant-select {
|
|
width: 80%;
|
|
text-align: left;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default globalStyles;
|
|
|