Skip to content

Commit

Permalink
scrollbar fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
justoverclockl committed Oct 6, 2021
1 parent 7b55ab5 commit b9d61b7
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion less/forum.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
div#box {
height: 200px;
overflow: hidden;
overflow: auto;
padding: 10px;
border-radius: 11px;
background: #e8ecf3;
Expand Down Expand Up @@ -38,3 +38,25 @@ input.FormChat {
i.fas.fa-comment-alt.chatIcon {
margin-right: 5px;
}

/* scrollbar */
#box::-webkit-scrollbar-track
{
border-radius: 10px;
background-color: #e8ecf3;
margin-top: 10px;
margin-bottom: 10px;
}

#box::-webkit-scrollbar
{
width: 5px;
background-color: #F5F5F5;
}

#box::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: @primary-color;
}

0 comments on commit b9d61b7

Please sign in to comment.