Skip to content

Commit e8ae0e9

Browse files
committed
Refactor configuration and styles: Update Tailwind CSS content paths and correct font import paths for improved project structure and consistency.
1 parent a4078fc commit e8ae0e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/newtab/App.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "../../assets/fonts/fonts.css";
1+
@import "../../../assets/fonts/fonts.css";
22

33
@tailwind base;
44
@tailwind components;

tailwind.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { DARK_THEME, LIGHT_THEME } from "./pages/components/constants";
1+
import { DARK_THEME, LIGHT_THEME } from "./src/services/constants";
22

33
/** @type {import('tailwindcss').Config} */
44
module.exports = {
5-
content: ["./index.html", "./pages/**/*.{js,jsx}", "./entrypoints/**/*.{js,jsx}"],
5+
content: ["./src/**/*.{js,jsx}", "./entrypoints/**/*.{js,jsx}"],
66
plugins: [require("daisyui")],
77
daisyui: {
88
themes: [LIGHT_THEME, DARK_THEME],

0 commit comments

Comments
 (0)