react-jwchat
Version:
This is an easy-to-use web chat component, based on react.
28 lines (27 loc) • 475 B
CSS
.content {
max-width: 280px;
min-width: 230px;
overflow: hidden;
background-color: white;
display: flex;
}
.list_area {
background-color: white;
flex: 1;
overflow: auto;
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.list_area::-webkit-scrollbar {
width: 0 ;
}
.scroll_bar_track {
width: 3px;
position: relative;
}
.scroll_bar_thumb {
position: absolute;
background-color: #aaaaaa;
width: 100%;
border-radius: 1px;
}