Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: content within .suggestion is scrollable and visible [IDE-366] #479

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Snyk Security Changelog

## [2.12.4]
- Fix `.suggestion` class to ensure it is scrollable and not overlapped by the `.suggestion-actions` fixed element. This change prevents the suggestion content from being hidden.

## [2.12.3]
- Fix a bug in AI Applyfix on Windows.
- Changes some of the colours used in the HTML panel so it's consistent with designs.
Expand Down
2 changes: 2 additions & 0 deletions media/views/snykCode/suggestion/suggestion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ body {
height: 100%;
margin: 0;
font-size: 1.4rem;
overflow-y: auto;
height: calc(100vh - 80px); /* 80px is the height of the footer */
}

.suggestion-title {
Expand Down
Loading