Skip to content

Commit 83be173

Browse files
UI(jobs/PG): <PgMobileMenu> add border
1 parent d9f6572 commit 83be173

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

client/src/sites/pg/components/PgHeader.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ function PgMobileMenu(props: { isOpen: boolean; navLinks: NavLink[] }) {
244244
pointerEvents={props.isOpen ? "auto" : "none"}
245245
transition="opacity 0.2s ease, transform 0.2s ease"
246246
overflow="hidden"
247+
border="1px solid {colors.brand.black}"
247248
>
248249
{props.navLinks.map(link =>
249250
link.links.length > 0 ? (
@@ -308,7 +309,8 @@ function PgMobileCollapsibleSection(props: {
308309
</Flex>
309310
</Flex>
310311
</Collapsible.Trigger>
311-
<Collapsible.Content>
312+
313+
<Collapsible.Content borderColor="black">
312314
<Stack gap="0">
313315
{props.link.links.map(child => (
314316
<Link key={child.label} href={child.href} {...style.mobile.childLink}>

0 commit comments

Comments
 (0)