mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-09 16:08:14 -06:00
- Replace Google Fonts CDN with self-hosted FontSource packages - Add @fontsource-variable/inter for variable Inter font - Add @fontsource/ibm-plex-mono with weight 400 for monospace font - Create src/lib/utils.ts with shadcn's cn utility function - Install tailwind-merge for intelligent Tailwind class merging - Replace all clsx usages with cn utility across components - LookupInput.tsx: 7 replacements - ErrorCard.tsx: 1 replacement - Property.tsx: 2 replacements - Remove Google Fonts URL import from globals.css
34 lines
601 B
CSS
34 lines
601 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--font-sans: "Inter var", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
--font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
--color-zinc-850: #1D1D20;
|
|
}
|
|
|
|
dd {
|
|
margin: 0.5em 0 1em 2em;
|
|
}
|
|
|
|
.dashed {
|
|
border-bottom: 1px dashed silver;
|
|
}
|
|
|
|
body {
|
|
color-scheme: dark;
|
|
@apply bg-zinc-900 font-sans text-white;
|
|
}
|
|
|
|
dd,
|
|
dl {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
dl {
|
|
margin: 0;
|
|
}
|
|
|
|
.scrollbar-thin {
|
|
scrollbar-width: thin;
|
|
}
|