Skip to content

Commit

Permalink
🎨 Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevella committed Jan 13, 2024
1 parent 4eaa132 commit c2fc3a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/web/src/app/[locale]/(admin)/settings/menu-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ export function MenuItem(props: { href: string; children: React.ReactNode }) {
return (
<Link
className={clsx(
"flex min-w-0 items-center gap-x-2 px-3 py-2 text-sm font-medium",
"flex min-w-0 items-center rounded-none gap-x-2 px-3 py-2 text-sm font-medium",
pathname === props.href
? "bg-gray-200"
: "text-gray-500 hover:text-gray-800",
? "bg-white"
: "text-gray-500 hover:bg-gray-100 focus:bg-gray-200",
)}
href={props.href}
>
Expand Down Expand Up @@ -66,7 +66,7 @@ export function SettingsMenu() {

return (
<>
<div className="hidden lg:inline-flex mb-4 border rounded-md p-0.5 gap-x-2">
<div className="hidden overflow-hidden shadow-sm divide-x lg:inline-flex mb-4 border rounded-md bg-gray-50">
{menuItems.map((item, i) => (
<MenuItem key={i} href={item.href}>
<item.icon className="h-4 w-4" />
Expand Down

1 comment on commit c2fc3a5

@vercel
Copy link

@vercel vercel bot commented on c2fc3a5 Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

app – ./

app-git-main-rallly.vercel.app
app.rallly.co
app-rallly.vercel.app

Please sign in to comment.