mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
Make arboretum scrollable
This commit is contained in:
parent
e4b9de038b
commit
0fa11ed5b0
@ -1,6 +1,26 @@
|
||||
.container {
|
||||
width: 100%;
|
||||
padding: 1rem;
|
||||
max-height: calc(100vh - 4rem);
|
||||
overflow-y: auto;
|
||||
scrollbar-gutter: stable;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb {
|
||||
background-color: var(--bolt-elements-borderColor);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb:hover {
|
||||
background-color: var(--bolt-elements-textTertiary);
|
||||
}
|
||||
}
|
||||
|
||||
.grid {
|
||||
|
Loading…
Reference in New Issue
Block a user