Skip to content

Commit

Permalink
update font weight for menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kualta committed Dec 21, 2024
1 parent 73d6e2c commit 43bde3b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/menu/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const MenuAuthed = ({ handle, user }: { handle: string; user: User }) =>
<Dialog>
<DialogTrigger asChild>
<Button className="px-6 sm:px-12 hidden sm:flex">
<div className="font-bold text-lg -mt-1">post</div>
<div className="font-semibold text-lg -mt-1">post</div>
</Button>
</DialogTrigger>
<DialogContent className="max-w-full sm:max-w-[700px]">
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as React from "react";
import { cn } from "@/src/utils";

const buttonVariants = cva(
"inline-flex items-center justify-center rounded-lg font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
"inline-flex items-center justify-center rounded-lg font-normal ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
{
variants: {
variant: {
Expand Down
2 changes: 0 additions & 2 deletions src/utils/localStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ interface WagmiStorage {
removeItem(key: string): void | Promise<void>;
}

// Class that implements both Lens and Wagmi storage interfaces
export class CookieStorageProvider implements IObservableStorageProvider, WagmiStorage {
private subscribers = new Map<string, StorageProviderSubscriber[]>();
private cookies: Map<string, string>;
Expand All @@ -122,7 +121,6 @@ export class CookieStorageProvider implements IObservableStorageProvider, WagmiS
setItem(key: string, value: string): void {
this.cookies.set(key, value);

// Set cookie with 30 day expiry
const expires = new Date();
expires.setDate(expires.getDate() + 30);

Expand Down

0 comments on commit 43bde3b

Please sign in to comment.