Skip to content

Commit

Permalink
Merge pull request #66 from stneveadomi/bugfix/occurrence-text
Browse files Browse the repository at this point in the history
Bugfix: Occurrence Text Cutoff
  • Loading branch information
stneveadomi authored Jun 14, 2024
2 parents c93a4bb + e65c3a9 commit 4fecb24
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [1.1.1]

### Changed

- Bug Fix: Fixed occurrence text that was longer than view size being cut off.

## [1.1.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "grepc",
"description": "An approachable regular expression highlighter with advanced customization for VS Code.",
"icon": "media/GREPC-standard-circle-124.png",
"version": "1.1.0",
"version": "1.1.1",
"engines": {
"vscode": "^1.84.0"
},
Expand Down
2 changes: 1 addition & 1 deletion webview-ui/grepc-webview/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grepc-webview",
"type": "module",
"version": "1.1.0",
"version": "1.1.1",
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": ["<rootDir>/src/setup.jest.ts"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
.occurrence-text {
background-color: var(--vscode-input-background);
border-radius: 3px;
height: 2em;
min-height: 2em;
line-height: 2em;
display: inline-flex;
align-items: center;
border: 1px solid rgb(73, 73, 73);
Expand Down

0 comments on commit 4fecb24

Please sign in to comment.