diff --git a/web/src/assets/styles/index.scss b/web/src/assets/styles/index.scss
index 176648a1a8..c271ff2fb2 100644
--- a/web/src/assets/styles/index.scss
+++ b/web/src/assets/styles/index.scss
@@ -356,6 +356,11 @@ label.pf-m-disabled + .pf-v6-c-check__description {
--pf-v6-c-form__group--m-action--MarginBlockStart: var(--pf-t--global--spacer--md);
}
+.pf-v6-c-list.pf-m-inline {
+ --pf-v6-c-list--m-inline--RowGap: var(--pf-t--global--spacer--sm);
+ --pf-v6-c-list--m-inline--ColumnGap: var(--pf-t--global--spacer--md);
+}
+
// Some utilities not found at PF
.w-14ch {
inline-size: 14ch;
diff --git a/web/src/components/questions/UnsupportedAutoYaST.tsx b/web/src/components/questions/UnsupportedAutoYaST.tsx
index b162137f26..6136b27d64 100644
--- a/web/src/components/questions/UnsupportedAutoYaST.tsx
+++ b/web/src/components/questions/UnsupportedAutoYaST.tsx
@@ -21,12 +21,20 @@
*/
import React from "react";
-import { Flex, Grid, GridItem, Content } from "@patternfly/react-core";
+import {
+ Content,
+ Grid,
+ GridItem,
+ List,
+ ListItem,
+ ListVariant,
+ Stack,
+} from "@patternfly/react-core";
import { AnswerCallback, Question } from "~/types/questions";
import { Page, Popup } from "~/components/core";
-import { _ } from "~/i18n";
import QuestionActions from "~/components/questions/QuestionActions";
import { sprintf } from "sprintf-js";
+import { _ } from "~/i18n";
const UnsupportedElements = ({
elements,
@@ -43,14 +51,12 @@ const UnsupportedElements = ({
return (
-
-
+
+
{elements.map((e: string, i: number) => (
-
- {e}
-
+ {e}
))}
-
+
);
@@ -73,30 +79,32 @@ export default function UnsupportedAutoYaST({
return (
- {_("Some of the elements in your AutoYaST profile are not supported.")}
-
-
-
-
-
- {_(
- 'If you want to disable this check, please specify "agama.ay_check=0" at kernel\'s command-line',
- )}
-
+
+ {_("Some of the elements in your AutoYaST profile are not supported.")}
+
+
+
+
+
+ {_(
+ 'If you want to disable this check, please specify "agama.ay_check=0" at kernel\'s command-line',
+ )}
+
+