- Introduced new search card components for Contact, Event, Location, Note, Receipt, and Website. - Updated the App component to utilize these new components for displaying search results. - Changed the default font from Manrope to Switzer and updated related styles. - Added a new dependency `solid-motionone` to package.json. - Improved search functionality with a new sample data structure and enhanced search logic.
16 lines
371 B
JavaScript
16 lines
371 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Switzer", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@kobalte/tailwindcss"),
|
|
require("tailwind-scrollbar-hide"),
|
|
],
|
|
};
|