making the colors closer together

This commit is contained in:
2024-08-27 21:04:50 -06:00
parent 6d760dbe6c
commit fc245b111b
5 changed files with 27 additions and 26 deletions

View File

@@ -1,3 +1,4 @@
import { borderRadius } from "tailwindcss/defaultTheme";
import type { Config } from "tailwindcss";
const config: Config = {
@@ -6,7 +7,12 @@ const config: Config = {
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {},
theme: {
borderRadius: {
...borderRadius,
xl: "24px",
},
},
plugins: [],
};
export default config;