Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtron-labs/devtron-fe-common-lib",
"version": "0.5.2-beta-1",
"version": "0.5.2-beta-2",
"description": "Supporting common component library",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Common/CodeEditor/CodeEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ const CodeEditor: React.FC<CodeEditorInterface> & CodeEditorComposition = React.
<CodeEditorPlaceholder customLoader={customLoader} />
) : (
<>
{shebang && <div className="shebang">{shebang}</div>}
{shebang && <div className="code-editor__shebang">{shebang}</div>}
{state.diffMode ? (
<MonacoDiffEditor
original={
Expand Down
6 changes: 6 additions & 0 deletions src/Common/CodeEditor/codeEditor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,9 @@
z-index: 9;
}
}

.code-editor__shebang {
padding: 0 52px;
color: #151515;
opacity: 0.6;
}