Skip to content

Commit

Permalink
NEOS-341: updates (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
evisdrenova authored Nov 19, 2023
1 parent 612666c commit ed807c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions frontend/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default async function RootLayout({
<head />
<body
className={cn(
'min-h-screen bg-background font-sans antialiased',
'min-h-screen bg-background font-sans antialiased overflow-scroll',
fontSans.variable
)}
>
Expand All @@ -45,7 +45,6 @@ export default async function RootLayout({
<div className="flex-1 container" id="top-level-layout">
{children}
</div>
{/* <div className="flex-1 container">{children}</div> */}
<SiteFooter />
<Toaster />
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/transformers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Transformers(): ReactElement {
extraHeading={<NewTransformerButton />}
/>
}
containerClassName="transformer-page mx-24"
containerClassName="transformer-page"
>
<TransformersTable />
</OverviewContainer>
Expand Down
5 changes: 2 additions & 3 deletions frontend/components/jobs/SchemaTable/TransformerSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,11 @@ export default function TransformerSelect(props: Props): ReactElement {
variant="outline"
role="combobox"
aria-expanded={open}
className="justify-between w-[200px]"
className="justify-between w-[175px]"
>
<div className="whitespace-nowrap truncate w-[200px]">
<div className="whitespace-nowrap truncate w-[175px]">
{ToTitleCase(value) ? ToTitleCase(value) : 'Select a transformer'}
</div>

<CaretSortIcon className="ml-2 h-4 w-4 shrink-0 opacity-50" />
</Button>
</PopoverTrigger>
Expand Down

0 comments on commit ed807c2

Please sign in to comment.