57 lines
944 B
Plaintext
57 lines
944 B
Plaintext
@import '~antd/dist/antd.less';
|
|
|
|
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;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
|
|
#root {
|
|
min-width: 1280px;
|
|
}
|
|
|
|
.flex-grow-1 {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Password Dots Regular";
|
|
src: url('./assets/fonts/password.ttf');
|
|
}
|
|
|
|
*,
|
|
:after,
|
|
:before {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
height: 8px;
|
|
width: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #d6dde9;
|
|
border-radius: 4px;
|
|
border: 1px solid #c4cfe1;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
::selection {
|
|
color: #fff;
|
|
background: #3b7cff;
|
|
} |