Skip to content

Commit

Permalink
Improve grid responsiveness
Browse files Browse the repository at this point in the history
Fixes #234
  • Loading branch information
Tyriar committed Mar 17, 2021
1 parent fad2d46 commit efb00ca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dist/inspector.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ input {
font-family: var(--vscode-editor-font-family);
background-color: var(--vscode-input-background);
border-width: 0;
width: 170px;
width: 100%;
color: var(--vscode-input-foreground);
}

Expand All @@ -25,14 +25,15 @@ body {
position: sticky;
top: 20px;
display: grid;
grid-template-columns: auto auto;
grid-template-columns: 0fr 1fr;
padding-top: 3px;
align-items: center;
}

.grid-item {
text-align: left;
margin-bottom: -1px;
min-width: 100px;
}

.grid-item:nth-child(2n) {
Expand All @@ -54,5 +55,5 @@ select {
background-color: var(--vscode-dropdown-background);
border: var(--vscode-dropdown-border);
color: var(--vscode-dropdown-foreground);
width: 178px;
min-width: 100px;
}

0 comments on commit efb00ca

Please sign in to comment.