Skip to content

Commit

Permalink
Tag colour hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ujaandas committed Sep 14, 2024
1 parent c168baf commit 6152566
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ProjectContent from "@/components/chunks/ProjectContent";
export default async function Home() {
return (
// <div className="bg-cat-mocha-mantle">
<div className="bg-gradient-to-r dark:from-cat-mocha-crust from-cat-latte-crust from-10% dark:to-cat-mocha-base to-cat-latte-base to-90%">
<div className="bg-gradient-to-r dark:from-cat-mocha-crust from-cat-latte-base from-10% dark:to-cat-mocha-base to-cat-latte-mantle to-90%">
<main className="flex flex-col p-10 snap-mandatory overflow-hidden items-center w-full max-w-2xl md:max-w-3xl justify-center m-auto ">
<section className="flex flex-col md:flex-row items-center">
<DynamicSidebar />
Expand Down
2 changes: 1 addition & 1 deletion src/components/mdx/Post.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function Post({ metadata, content }: PostProps) {
<h2 className="text-xl font-semibold">{metadata.subtitle}</h2>
<h2 className="text-md opacity-80">{metadata.title}</h2>
</div>
<article className="prose prose-mg max-w-xl my-3 dark:text-cat-mocha-overlay-2 text-cat-latte-overlay-2 opacity-90">
<article className="prose prose-mg max-w-xl my-3 dark:text-cat-mocha-overlay-2 text-cat-latte-overlay-2">
<MDXRemote source={content} />
</article>
<h3 className="text-sm dark:text-cat-mocha-overlay-0 text-cat-latte-overlay-0">
Expand Down
2 changes: 1 addition & 1 deletion src/components/mdx/Tags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Tags({ tags }: TagsProps) {
{tags.map((tag, index) => (
<span
key={index}
className="text-sm dark:bg-cat-mocha-sky bg-cat-latte-sky bg:text-cat-mocha-sky text-cat-latte-sky bg-opacity-10 px-3 py-1 rounded-full mr-2 mb-2"
className="text-sm dark:bg-cat-mocha-sky bg-cat-latte-sky dark:text-cat-mocha-sky text-cat-latte-sky bg-opacity-10 dark:bg-opacity-10 px-3 py-1 rounded-full mr-2 mb-2"
>
{tag}
</span>
Expand Down

0 comments on commit 6152566

Please sign in to comment.