| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- // 公共样式和变量
- @import 'mixin';
- @import 'theme.less';
- @m-grey0: #364048;
- @m-grey1: #7a8a94;
- @m-grey2: #88a0ae;
- @m-grey3: #ccc;
- @m-grey4: #333333;
- @m-grey5: #363F45;
- @m-red0: #ff4d4f;
- @m-white: #fff;
- @m-black0: #242a2e;
- @m-black1: #181e22;
- @m-black2: #0E0E0F;
- @m-blue0: #3a87f7;
- @m-blue1: #4885eb;
- @m-blue2: #3270d2;
- @body-bg: #e9eef3;
- @font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
- //高度设置
- @bottomHeight: 330px;
- /*滚动条样式*/
- // ::-webkit-scrollbar {
- // width: 10px;
- // height: 10px;
- // }
- ::-webkit-scrollbar-thumb {
- border-radius: 10px;
- }
- ::-webkit-scrollbar-button {
- background-color: transparent;
- }
- ::-webkit-scrollbar-track-piece {
- background-color: transparent;
- }
- ::-webkit-scrollbar-corner,
- .el-input::-webkit-scrollbar-corner {
- background-color: transparent;
- }
|