Skip to content
Open
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 client/src/sites/pg/components/PgAlgoliaFilterCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function PgMobileCollapsible(props: {
<Stack gap="gap.sm">
{props.facetsTopbar}

<HStack gap="gap.sm" align="flex-start" flexWrap="wrap">
<HStack columnGap="gap.md" rowGap="gap.sm" align="flex-start" flexWrap="wrap">
<PgAlgoliaFacetsActive config={props.facetsActive} />
<PgRefinesClearButton
onClear={props.facetsActive.onClearAdditional}
Expand Down
8 changes: 4 additions & 4 deletions client/src/sites/pg/components/PgHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const style = {
py: "5",
},
hero: {
pl: layout.style.header.paddingX,
pl: { base: "30px", md: layout.style.header.paddingX.md, lg: "158px" },
pr: { base: "30px", md: layout.style.header.paddingX.md },
},
logo: { w: "140px", h: "70px" },
Expand Down Expand Up @@ -104,7 +104,7 @@ export function PgHeroHeader(props: { navLinks: NavLink[]; isLoading: boolean })
<Text
as="h1"
fontFamily="heading"
fontSize={{ base: "26px", md: "6xl" }}
fontSize={{ base: "26px", md: "53px", lg: "6xl" }}
lineHeight={{ base: "32px", md: "1.2" }}
>
Find a job that&apos;s good,
Expand All @@ -114,15 +114,15 @@ export function PgHeroHeader(props: { navLinks: NavLink[]; isLoading: boolean })
as="span"
fontFamily="heading"
fontStyle="italic"
fontSize={{ base: "26px", md: "6xl" }}
fontSize={{ base: "26px", md: "53px", lg: "6xl" }}
lineHeight={{ base: "32px", md: "1.2" }}
>
and
</Box>{" "}
for the world.
</Text>
<Text
fontSize={{ base: "19px", md: "23px" }}
fontSize={{ base: "17px", md: "20px", lg: "23px" }}
lineHeight={{ base: "25px", md: "1.4" }}
mt={{ base: "4", md: "12" }}
>
Expand Down
17 changes: 13 additions & 4 deletions client/src/sites/pg/pages/jobs/list/JobCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export function JobCard(props: {
gap="gap.sm"
mb={{ base: cardState === CardState.OpenByUser ? "gap.md" : "0", md: "gap.lg" }}
>
<Flex gap={{ base: "gap.sm", md: "gap.lg" }}>
<Flex gap={{ base: "gap.md", md: "gap.lg" }}>
{props.job.org?.logo ? (
<Image
src={props.job.org.logo.url}
Expand Down Expand Up @@ -144,8 +144,9 @@ export function JobCard(props: {
<Flex flex="1" minW="0" justify="space-between" gap="gap.md">
<VStack
align="flex-start"
justify={{ md: "space-between" }}
justify="space-between"
gap={{ base: "3px", md: "0" }}
h="full"
>
<JobTitleLink
job={props.job}
Expand Down Expand Up @@ -320,12 +321,20 @@ function JobExpanded(props: { job: JobFragmentType }) {
<Text fontSize="sm">{props.job.org.description}</Text>
</Stack>
)}
<Flex gap="gap.md" align="center" w="fit-content" pos="relative" zIndex="2">
<Flex
gap="gap.md"
align="center"
w={{ base: "full", md: "fit-content" }}
pr={{ base: "30px", md: "0" }}
pos="relative"
zIndex="2"
>
{props.job.url_external && (
<Button
asChild
variant="pg-primary"
w={{ base: "150px", md: "190px" }}
w={{ base: "auto", md: "190px" }}
flex={{ base: "1", md: "initial" }}
h="10"
focusRingColor="transparent"
>
Expand Down
Loading