diff --git a/app/globals.css b/app/globals.css index 9c75c91c..0715e9ea 100644 --- a/app/globals.css +++ b/app/globals.css @@ -469,13 +469,20 @@ pre.shiki { @apply ml-2; } +.container { + @apply border; + @apply border-border-light; + @apply rounded-md; + background: rgba(var(--bg-page), var(--bg-page-alpha)); +} + .transparent-container { @apply border; @apply border-border-light; @apply rounded-md; } -.container { +.frosted-container { background: rgba(var(--bg-page), 0.75); @apply border; @apply border-bg-page; diff --git a/app/lish/[did]/[publication]/dashboard/PublishedPostsLists.tsx b/app/lish/[did]/[publication]/dashboard/PublishedPostsLists.tsx index 1de03e91..83a12aea 100644 --- a/app/lish/[did]/[publication]/dashboard/PublishedPostsLists.tsx +++ b/app/lish/[did]/[publication]/dashboard/PublishedPostsLists.tsx @@ -9,7 +9,10 @@ import { } from "./PublicationSWRProvider"; import { Fragment } from "react"; import { useParams } from "next/navigation"; -import { getPublicationURL, getDocumentURL } from "app/lish/createPub/getPublicationURL"; +import { + getPublicationURL, + getDocumentURL, +} from "app/lish/createPub/getPublicationURL"; import { SpeedyLink } from "components/SpeedyLink"; import { InteractionPreview } from "components/InteractionsPreview"; import { useLocalizedDate } from "src/hooks/useLocalizedDate"; @@ -27,7 +30,7 @@ export function PublishedPostsList(props: { if (!publication) return null; if (!documents || documents.length === 0) return ( -