Skip to content

Commit

Permalink
Merge pull request #5033 from rvykydal/webui-critical-error-dialog-fonts
Browse files Browse the repository at this point in the history
webui: use monospace font in critical error dialog
  • Loading branch information
rvykydal authored Aug 11, 2023
2 parents 517ff40 + dd65a7f commit b2e2cd0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/webui/src/components/Error.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ import { ExternalLinkAltIcon } from "@patternfly/react-icons";

import { exitGui } from "../helpers/exit.js";

import "./Error.scss";

const _ = cockpit.gettext;

export const bugzillaPrefiledReportURL = (productQueryData) => {
Expand Down
8 changes: 8 additions & 0 deletions ui/webui/src/components/Error.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#critical-error-review-attached-log {
font-family: var(--pf-global--FontFamily--monospace);
font-size: var(--pf-global--FontSize--sm);
}

#critical-error-review-details {
font-family: var(--pf-global--FontFamily--monospace);
}

0 comments on commit b2e2cd0

Please sign in to comment.