Skip to content

Commit

Permalink
resources: smoother collections scrolling (fixes #6280) (#7943)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <[email protected]>
  • Loading branch information
Gavinp14 and dogi authored Dec 19, 2024
1 parent 1860622 commit ad4790a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "planet",
"license": "AGPL-3.0",
"version": "0.16.15",
"version": "0.16.16",
"myplanet": {
"latest": "v0.21.45",
"min": "v0.20.45"
Expand Down
8 changes: 8 additions & 0 deletions src/app/shared/forms/planet-tag-input-dialog.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ import { DialogsPromptComponent } from '../../shared/dialogs/dialogs-prompt.comp
@Component({
'templateUrl': 'planet-tag-input-dialog.component.html',
'styles': [ `
:host {
display: block;
overflow: hidden;
}
:host mat-dialog-content {
overflow-y: auto;
max-height: calc(100vh - 100px);
}
:host .mat-list-option span {
font-weight: inherit;
}
Expand Down

0 comments on commit ad4790a

Please sign in to comment.