Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,17 @@ import { ExportToolbar } from "./ExportToolbar";
const $OverlayContainer = styled.div`
position: absolute;
top: 16px;
left: 50%;
transform: translateX(-50%);
left: 16px;
right: 60px;
display: flex;
justify-content: flex-end;
overflow: hidden;
z-index: 200;
pointer-events: none;

> * {
pointer-events: auto;
}
`;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ const $Toolbar = styled.div`
align-items: center;
gap: 6px;
padding: 6px 8px;
flex-shrink: 0;
margin: 0 auto;
background-color: ${({ theme }) => theme.controlBar.background};
border: 1px solid ${({ theme }) => theme.controlBar.border};
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
backdrop-filter: blur(8px);
white-space: nowrap;
`;

/** Logical group of related controls. */
Expand Down
6 changes: 6 additions & 0 deletions src/vscode-bicep/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,12 @@
"alt": "bicep.showVisualizer",
"group": "navigation"
},
{
"command": "bicep.showVisualDesignerToSide",
"when": "editorLangId == bicep",
"alt": "bicep.showVisualDesigner",
"group": "navigation"
},
{
"command": "bicep.showSourceFromVisualizer",
"when": "bicepVisualizerFocus",
Expand Down
Loading