mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
feat(builder): fix sidebar scroll issue (#7548)
fix sidebar scroll issue
This commit is contained in:
@@ -88,16 +88,17 @@ input::placeholder, textarea::placeholder {
|
||||
|
||||
.sidebar {
|
||||
position: fixed;
|
||||
top: 68px;
|
||||
top: 0;
|
||||
left: -600px;
|
||||
width: 350px;
|
||||
height: 100%;
|
||||
height: calc(100vh - 68px); /* Full height minus top offset */
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
padding: 20px;
|
||||
transition: left 0.3s ease;
|
||||
z-index: 1000;
|
||||
overflow-y: auto;
|
||||
margin-top: 68px; /* Margin to push content below the top fixed area */
|
||||
}
|
||||
|
||||
.sidebar.open {
|
||||
|
||||
Reference in New Issue
Block a user