Skip to content
Open
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
8 changes: 8 additions & 0 deletions frontend/public/style/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ $masthead-logo-max-height: 60px;
}
}

// Upstream PatternFly LogViewer bug https://github.com/patternfly/react-log-viewer/issues/106
// Prevent scrollIntoView in LogViewer from horizontally scrolling the drawer__main container when searching pod logs with wrap lines disabled.
// Workaround: Apply overflow: clip to remove the element from being a scroll container entirely, so scrollIntoView skips it.
// This prevents the page shift without affecting the log viewer's own horizontal scrolling.
#content .pf-v6-c-drawer__main {
overflow: clip;
}

.odc-catalog-tile {
// Get rid of weird stretching of catalog grid items
.pf-v6-c-card__header-main {
Expand Down