Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbreese committed Dec 19, 2024
1 parent 37d6c01 commit 53d88fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/elements/favorites-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {XMarkIcon} from "@heroicons/react/20/solid"
import {H2} from "./headers"
import {clsx} from "clsx"
import {twMerge} from "tailwind-merge"
import {useState} from "react"
import React, {useState} from "react"

const ShareButtons = () => {
const [, copy] = useCopyToClipboard()
Expand Down Expand Up @@ -46,7 +46,7 @@ const ShareButtons = () => {
{/* className={"list-unstyled " + (isActive ? "" : "tw-hidden")} */}
<div
className={twMerge(
"r-4 absolute bottom-0 right-0 w-20 bg-black p-3 text-base text-white",
"r-4 absolute right-0 top-[-35px] w-[80px] bg-fog p-3 text-[.8em] text-black",
clsx({"tw-hidden": !isActive})
)}
>
Expand Down

0 comments on commit 53d88fe

Please sign in to comment.