This commit is contained in:
Maciej Caderek
2022-02-08 21:52:31 +01:00
parent 56ed83d9f6
commit 4785b61644
15 changed files with 274 additions and 71 deletions

View File

@@ -0,0 +1,28 @@
.scrollable {
background: #0e0e13;
height: auto;
padding: 40px 20px;
height: 100%;
display: flex;
overflow: auto;
}
.scrollable__content {
overflow-y: auto;
overflow-x: hidden;
padding: 0;
}
.scrollable__content::-webkit-scrollbar {
width: 0.7rem;
cursor: pointer;
}
.scrollable__content::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.scrollable__content::-webkit-scrollbar-thumb {
background-color: rgb(0, 59, 47);
outline: 1px solid rgb(0, 59, 47);
}