Skip to content

Commit

Permalink
Makes scroll transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarlosn committed Feb 6, 2024
1 parent d9a46bc commit 3e2808f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protolib/components/AdminPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const AdminPanel = ({ children }) => {


// console.log('userSpaces: ', userSpaces, 'current Workspace: ', currentWorkspace)
return rightPanelSize && <MainPanel borderLess={true} rightPanelSize={rightPanelSize} setRightPanelSize={setRightPanelSize} rightPanelStyle={{ marginRight: '20px', height: 'calc(100vh - 85px)', marginTop: '68px' }} rightPanelVisible={appState.logsPanelOpened} rightPanelResizable={true} centerPanelContent={Workspaces[currentWorkspace]
return rightPanelSize && <MainPanel borderLess={true} rightPanelSize={rightPanelSize} setRightPanelSize={setRightPanelSize} rightPanelStyle={{ marginRight: '20px', height: 'calc(100vh - 85px)', marginTop: '68px', backgroundColor: 'transparent' }} rightPanelVisible={appState.logsPanelOpened} rightPanelResizable={true} centerPanelContent={Workspaces[currentWorkspace]
? <PanelLayout
topBar={
<>
Expand Down

0 comments on commit 3e2808f

Please sign in to comment.