Skip to content

Commit

Permalink
updates tailwind styling config
Browse files Browse the repository at this point in the history
  • Loading branch information
cammiida committed Dec 24, 2024
1 parent bd761ba commit 1269e9b
Show file tree
Hide file tree
Showing 6 changed files with 430 additions and 709 deletions.
8 changes: 5 additions & 3 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ import {
} from "@remix-run/react";
import type { LoaderFunction } from "react-router-dom";
import { authenticator } from "./services/auth.server";
import styles from "./styles/app.css?url";
import tailwindStyles from "./styles/app.css?url";

export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }];
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: tailwindStyles },
];

export const meta: MetaFunction = () => [
{ charSet: "utf-8" },
Expand All @@ -26,7 +28,7 @@ export const loader: LoaderFunction = async ({ request }) => {

export default function App() {
return (
<html lang="en" className="bg-raspberry-sorbet">
<html lang="en">
<head>
<Meta />
<Links />
Expand Down
Loading

0 comments on commit 1269e9b

Please sign in to comment.