Skip to content

Commit

Permalink
Remove right border on mobile
Browse files Browse the repository at this point in the history
1. We don't have the breadcrumbs to the right of these tabs on mobile, so
    the right border is unnecessary and looked weird. This now matches
    the figma.
  • Loading branch information
aburke07 committed Feb 8, 2024
1 parent 3e07565 commit f692b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/common/NavTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function NavTabs({
paddingInline={{ base: 0, sm: 2 }}
gap={1.5}
height="100%"
borderLeftWidth={{ base: '1px', xl: '0' }}
borderLeftWidth={{ base: '0', sm: '1px', xl: '0' }}
{...props}
>
{tabs.map((tab: NavTab) =>
Expand Down

0 comments on commit f692b5f

Please sign in to comment.