42 lines
763 B
CSS
42 lines
763 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f5f7fa;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
'Noto Color Emoji';
|
|
}
|
|
|
|
.ant-layout {
|
|
background: transparent !important;
|
|
}
|
|
|
|
.ant-layout-sider {
|
|
background: #fff !important;
|
|
}
|
|
|
|
.ant-menu-light {
|
|
background: transparent !important;
|
|
}
|
|
|
|
/* Sider animation refinement */
|
|
.app-sider .ant-layout-sider-children {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Scrollbar styling */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #ccc;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|