add ScrollBar

This commit is contained in:
Majd_dk 2024-11-09 15:36:33 +03:00
parent db3d01cf23
commit 4f30716fd7

View File

@ -71,11 +71,23 @@
position: relative; position: relative;
padding-top: 20px; padding-top: 20px;
margin-block: 10px; margin-block: 10px;
overflow-y: auto; // overflow-y: auto;
height: 100px;
overflow-y: scroll;
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: none; width: 6px;
}
&::-webkit-scrollbar-thumb {
background-color: var(--primary);
border-radius: 5px;
cursor:grab;
} }
> p { > p {