Skip to content

Commit

Permalink
fix: tomerged
Browse files Browse the repository at this point in the history
  • Loading branch information
nahoc committed Nov 13, 2024
1 parent d42695d commit 664d75e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@risc0/ui",
"version": "0.0.213",
"version": "0.0.214",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
17 changes: 10 additions & 7 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@ import { toMerged } from "es-toolkit";
import type { Config } from "tailwindcss";
import tailwindConfig from "./config/tailwind.config.base";

const config = toMerged(tailwindConfig, {
theme: {
extend: {
fontFamily: {
sans: ["var(--font-europa-sans)", "system-ui"],
mono: ["var(--font-jetbrains-mono)"],
const config = toMerged(
{
theme: {
extend: {
fontFamily: {
sans: ["var(--font-europa-sans)", "system-ui"],
mono: ["var(--font-jetbrains-mono)"],
},
},
},
},
}) satisfies Config;
tailwindConfig,
) satisfies Config;

export default config;

0 comments on commit 664d75e

Please sign in to comment.