playing aroudn with scroll and overflow in the sidepanel

This commit is contained in:
talksik
2022-05-18 08:08:47 -05:00
parent bed932875a
commit 6a3aa13223
4 changed files with 50 additions and 26 deletions
+23 -1
View File
@@ -11,7 +11,9 @@ body {
}
#root {
@apply flex flex-col flex-1;
height: inherit;
width: inherit;
display: flex;
padding: 0 !important;
font-family: 'IBM Plex Sans', sans-serif;
}
@@ -47,3 +49,23 @@ button {
.ant-modal-footer {
padding: 0 !important;
}
/* custom scrollbar */
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #d6dee1;
border-radius: 20px;
border: 6px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #a8bbbf;
}