Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: fix UI issues #285

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/jobs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const page = async ({ searchParams }: { searchParams: JobQuerySchemaType }) => {
const validatedSearchParams = JobQuerySchema.parse(searchParams);

return (
<div className="container flex gap-5 pt-5">
<div className="container flex gap-5 pt-5 mt-5">
<JobFilters
searchParams={validatedSearchParams}
baseUrl={APP_PATHS.JOBS}
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const Header = () => {

return (
<header className="sticky top-6 z-50 md:w-auto mx-auto w-full px-5">
<div className="container flex h-14 max-w-screen-xl items-center md:border-2 rounded-full border-border/40 sm:bg-none sm:bg-background/60 ">
<div className="container flex h-14 max-w-screen-xl items-center md:border-2 rounded-full border-border/40 backdrop-blur supports-[backdrop-filter]:bg-background/60">
<Link href="/" className="p-2.5 mr-4">
<CompanyLogo />
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/job-filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const JobFilters = ({
);
}
return (
<aside className="rounded-lg border bg-background max-w-[320px] w-full h-fit p-6 sticky top-20">
<aside className="rounded-lg border bg-background max-w-[320px] w-full p-6 h-fit sticky top-24">
<div className="flex items-center justify-between">
<h3 className="font-medium text-base text-primary-text">All Filters</h3>
</div>
Expand Down
Loading