feat(builder): fix sidebar scroll issue (#7548)

fix sidebar scroll issue
This commit is contained in:
Bently
2024-07-22 13:05:50 +01:00
committed by GitHub
parent fd000a4173
commit a82317e2ac

View File

@@ -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 {