Skip to content

Commit

Permalink
Merge pull request #82 from rars/fix-background-line-widths
Browse files Browse the repository at this point in the history
fix(ngx-diff): make background color fill full width in horizontal overflow
  • Loading branch information
rars authored Mar 27, 2024
2 parents 2a8e5c0 + 4d061c9 commit 2898577
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [8.0.4](https://github.com/rars/ngx-diff/compare/v8.0.3...v8.0.4) (2024-03-27)


### Bug Fixes

* **ngx-diff:** make background color fill full width in horizontal overflow ([02cdc16](https://github.com/rars/ngx-diff/commit/02cdc16a7c47dce4c88dc5ad872db25ae8a3fd1b))

### [8.0.3](https://github.com/rars/ngx-diff/compare/v8.0.2...v8.0.3) (2024-03-27)


Expand Down
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": "ngx-diff",
"version": "8.0.3",
"version": "8.0.4",
"type": "module",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-diff/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-diff",
"version": "8.0.3",
"version": "8.0.4",
"peerDependencies": {
"@angular/common": ">=17.0.0",
"@angular/core": ">=17.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ div.sbs-diff-content-wrapper {
display: flex;
flex-direction: column;
align-items: stretch;
width: 100%;
min-width: 100%;
}

div.sbs-diff-old {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ div.ufd-diff-content-wrapper {
display: flex;
flex-direction: column;
align-items: stretch;
width: 100%;
min-width: 100%;
}

div.ufd-diff-old {
Expand Down

0 comments on commit 2898577

Please sign in to comment.