Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
fix: broken button background color
Browse files Browse the repository at this point in the history
  • Loading branch information
cacheonly committed Dec 12, 2023
1 parent c29d02e commit 35571df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module.exports = {
plugins: {
"postcss-import": {},
tailwindcss: {},
autoprefixer: {},
},
}
};
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Livestream with LiveKit",
description: "A sample full-stack application built with LiveKit",
};

export default function RootLayout({
Expand Down
4 changes: 3 additions & 1 deletion src/styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@tailwind base;
@import "tailwindcss/base";
@import "@radix-ui/themes/styles.css";

@tailwind components;
@tailwind utilities;

0 comments on commit 35571df

Please sign in to comment.