diff --git a/apps/client/src/features/app-settings/panel-utils/PanelUtils.module.scss b/apps/client/src/features/app-settings/panel-utils/PanelUtils.module.scss index 60f34d179..0db42c1f0 100644 --- a/apps/client/src/features/app-settings/panel-utils/PanelUtils.module.scss +++ b/apps/client/src/features/app-settings/panel-utils/PanelUtils.module.scss @@ -196,7 +196,6 @@ $inner-padding: 1rem; .inlineElements { display: flex; align-items: center; - flex-wrap: wrap; &.inner { gap: 0.5rem; @@ -213,6 +212,11 @@ $inner-padding: 1rem; &.apart { justify-content: space-between; } + + &.wrap { + flex-wrap: wrap; + row-gap: 0.5rem; + } } @keyframes animloader { diff --git a/apps/client/src/features/app-settings/panel-utils/PanelUtils.tsx b/apps/client/src/features/app-settings/panel-utils/PanelUtils.tsx index 98fbc4d74..1a8bdd574 100644 --- a/apps/client/src/features/app-settings/panel-utils/PanelUtils.tsx +++ b/apps/client/src/features/app-settings/panel-utils/PanelUtils.tsx @@ -107,7 +107,7 @@ export function BlockQuote({ children }: { children: ReactNode }) { return
{children}; } -export function Error({ children, className }: { children: ReactNode } & React.JSX.IntrinsicElements['div']) { +export function Error({ children, className }: PropsWithChildren & React.JSX.IntrinsicElements['div']) { return