diff --git a/frontend/src/components/layouts.tsx b/frontend/src/components/layouts.tsx index a30858586..740da2215 100644 --- a/frontend/src/components/layouts.tsx +++ b/frontend/src/components/layouts.tsx @@ -51,6 +51,7 @@ interface PageProps { children?: ReactNode; subtitle?: ReactNode; actions?: ReactNode; + wrapSize?: "md" | "lg" | "xl" | "2xl"; } export const Page = ({ @@ -61,10 +62,13 @@ export const Page = ({ subtitle, actions, children, + wrapSize = "lg", }: PageProps) => (
{(title || icon || subtitle || actions) && ( -
+
{icon} @@ -97,7 +101,7 @@ export const Section = ({ children, }: SectionProps) => (
-
+
{title || icon ? (
{icon} diff --git a/frontend/src/components/resources/deployment/log.tsx b/frontend/src/components/resources/deployment/log.tsx index bf85bafe7..81200bab4 100644 --- a/frontend/src/components/resources/deployment/log.tsx +++ b/frontend/src/components/resources/deployment/log.tsx @@ -77,7 +77,9 @@ const DeploymentLogsInner = ({ actions={
-
Invert Search
+
+ Invert
Search
+
{terms.map((term, index) => ( @@ -100,7 +102,7 @@ const DeploymentLogsInner = ({ onKeyDown={(e) => { if (e.key === "Enter") addTerm(); }} - className="w-[240px]" + className="w-[180px] xl:w-[240px]" />