38 lines
716 B
CSS
38 lines
716 B
CSS
|
|
@import '~antd/dist/antd.css';
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||
|
|
sans-serif;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
}
|
||
|
|
|
||
|
|
code {
|
||
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ant-layout-header {
|
||
|
|
background: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ant-layout-sider {
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ant-layout-content {
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.scrollable {
|
||
|
|
overflow-y: scroll;
|
||
|
|
-webkit-overflow-scrolling: touch;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* use for SPAN in place of A tag */
|
||
|
|
.a-link {
|
||
|
|
cursor: pointer;
|
||
|
|
color: #007aff;
|
||
|
|
}
|