Skip to content

Commit

Permalink
fix: 💄
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Stevens committed May 16, 2024
1 parent 72355bf commit cd5a62f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 32 deletions.
1 change: 0 additions & 1 deletion src/components/Container.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
import { Icon } from 'astro-icon/components';
import AccordionLayout from '../layouts/AccordionLayout.astro';
import * as about from '../pages/about/about.md';
import Card from './Card.astro';
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fritz - Jan Stevens</title>
<title>Jan Stevens</title>
</head>
<body>
<slot />
Expand Down
63 changes: 33 additions & 30 deletions tailwind.config.mjs
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}', './node_modules/flowbite/**/*.js'],
daisyui: {
themes: [
{
lofi: {
...require("daisyui/src/theming/themes")["lofi"],
"--rounded-box": "1rem",
"--rounded-btn": "0.5rem",
"--rounded-badge": "1.9rem"
},
black: {
...require("daisyui/src/theming/themes")["black"],
"--rounded-box": "1rem",
"--rounded-btn": "0.5rem",
"--rounded-badge": "1.9rem",
"secondary": "#e5e5e5"
}
}
],
},
theme: {
extend: {
fontFamily: {
'sans': ["DM Sans", "Inter", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
}
content: [
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
'./node_modules/flowbite/**/*.js',
],
daisyui: {
themes: [
{
lofi: {
...require('daisyui/src/theming/themes')['lofi'],
'--rounded-box': '1rem',
'--rounded-btn': '0.5rem',
'--rounded-badge': '1.9rem',
},
black: {
...require('daisyui/src/theming/themes')['black'],
'--rounded-box': '1rem',
'--rounded-btn': '0.5rem',
'--rounded-badge': '1.9rem',
secondary: '#e5e5e5',
},
},
],
},
theme: {
extend: {
fontFamily: {
sans: ['DM Sans', 'Inter', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
};

0 comments on commit cd5a62f

Please sign in to comment.