There was an error while loading. Please reload this page.
1 parent b357209 commit 84d10d2Copy full SHA for 84d10d2
2 files changed
packages/neuron-ui/src/components/Overview/index.tsx
@@ -80,9 +80,11 @@ const ActivityList = ({
80
onItemInvoked={item => {
81
showTransactionDetails(item.hash)
82
}}
83
+ className="customScrollBar"
84
styles={{
85
root: {
- overflow: 'auto',
86
+ overflowX: 'hidden',
87
+ overflowY: 'auto',
88
height: '100%',
89
backgroundColor: 'transparent',
90
},
packages/neuron-ui/src/styles/index.scss
@@ -66,6 +66,20 @@ navbar {
66
}
67
68
69
+
70
+.customScrollBar {
71
+ &::-webkit-scrollbar {
72
+ border-radius: 5px;
73
+ background-color: #e0e0e0;
74
+ width: 10px
75
+ }
76
77
+ &::-webkit-scrollbar-thumb {
78
79
+ background-color: #bdbdbd;
+}
@keyframes rotate360 {
from {
transform: rotate(0)
0 commit comments