Commit 203ff41aeb0f15aba44f14cbc2fe77d4b9677707
1 parent
1fa74ed0
使用分析添加左右滚动
Showing
1 changed file
with
10 additions
and
1 deletions
src/views/standard/analysis/index.vue
| ... | ... | @@ -440,7 +440,16 @@ export default { |
| 440 | 440 | }, |
| 441 | 441 | }; |
| 442 | 442 | </script> |
| 443 | - | |
| 443 | +<style> | |
| 444 | +div::-webkit-scrollbar { | |
| 445 | + width: 3px; | |
| 446 | + height: 10px; | |
| 447 | +} | |
| 448 | +div::-webkit-scrollbar-thumb { | |
| 449 | + border-radius: 10px; | |
| 450 | + background-color: #ccc; | |
| 451 | +} | |
| 452 | +</style> | |
| 444 | 453 | <style lang="scss" scoped> |
| 445 | 454 | .table-box { |
| 446 | 455 | padding: 0 20px; | ... | ... |