We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9f6572 commit 83be173Copy full SHA for 83be173
1 file changed
client/src/sites/pg/components/PgHeader.tsx
@@ -244,6 +244,7 @@ function PgMobileMenu(props: { isOpen: boolean; navLinks: NavLink[] }) {
244
pointerEvents={props.isOpen ? "auto" : "none"}
245
transition="opacity 0.2s ease, transform 0.2s ease"
246
overflow="hidden"
247
+ border="1px solid {colors.brand.black}"
248
>
249
{props.navLinks.map(link =>
250
link.links.length > 0 ? (
@@ -308,7 +309,8 @@ function PgMobileCollapsibleSection(props: {
308
309
</Flex>
310
311
</Collapsible.Trigger>
- <Collapsible.Content>
312
+
313
+ <Collapsible.Content borderColor="black">
314
<Stack gap="0">
315
{props.link.links.map(child => (
316
<Link key={child.label} href={child.href} {...style.mobile.childLink}>
0 commit comments