that's all the custom CSS i've done :
.Post-body a,
.ButtonGroup > .Button,
.Dropdown-menu > li > a,
.Dropdown-menu > li > button,
.sideNav .Dropdown--select .Dropdown-menu > li > a,
.AvatarEditor .Dropdown-toggle {
transition: 140ms;
}
::-webkit-scrollbar {
width: 10px;
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
}
.open .Dropdown-menu {
animation: dropdownFade 0.5s 1 cubic-bezier(0, 0, 0, 1);
}
@keyframes dropdownFade {
0% {
opacity: 0;
transform: translateY(10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@media (min-width: 768px) {
.IndexPage .DiscussionListItem-info > .item-tags,
.UserPage .DiscussionListItem-info > .item-tags {
max-width: 180px;
-webkit-mask-image: linear-gradient(to right, #000 170px, rgba(0, 0, 0, 0) 180px);
}
.DiscussionPage-list {
-webkit-box-shadow: 1px 0 0 0px rgba(0, 0, 0, 0.2);
box-shadow: 1px 0 0 0px rgba(0, 0, 0, 0.2);
}
}
.scrolled.App:before {
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}