| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ::-webkit-scrollbar {
- background-color: #fff;
- width: 16px;
- }
- /* background of the scrollbar except button or resizer */
- ::-webkit-scrollbar-track {
- background-color: #fff;
- }
- ::-webkit-scrollbar-track:hover {
- background-color: #f4f4f4;
- }
- /* scrollbar itself */
- ::-webkit-scrollbar-thumb {
- background-color: #babac0;
- border-radius: 16px;
- border: 5px solid #fff;
- }
- ::-webkit-scrollbar-thumb:hover {
- background-color: #a0a0a5;
- border: 4px solid #f4f4f4;
- }
- #app {
- height: 100%;
- }
- .content-layout {
- width: 100%;
- max-width: 1460px;
- margin: 0 auto;
- padding: 0 90px;
- position: relative;
- }
- body .ant-modal-confirm .ant-modal-body {
- padding: 26px;
- }
- body .ant-dropdown {
- min-width: auto !important;
- }
|