| <div className={styles.scrollbar}> |
| <div className={styles.scrollBarChartArea}> |
| <ScrollBarChart /> |
| </div> |
| </div> |
| <div className={styles.bottomLine} /> |
| </div> |
复制
| .scrollBarChartArea { |
| top: 405px; |
| width: 465px; |
| height: 300px; |
| position: absolute; |
| left: 1445px; |
| overflow: hidden auto; |
| } |
| |
| .scrollbar { |
| *::-webkit-scrollbar-track { |
| background-color: #fff; |
| } |
| |
| *::-webkit-scrollbar { |
| background-color: #57b2ff; |
| height: 0; |
| width: 0; |
| } |
| |
| *::-webkit-scrollbar-thumb { |
| background: #57b2ff; |
| border-radius: 4px; |
| height: 0; |
| width: 0; |
| } |
| } |
复制