Compare commits
No commits in common. "e13cb9bbb989415bc462989c1913d9a107b2e99e" and "c93141e68fa91a83219457401dabf67292c9258a" have entirely different histories.
e13cb9bbb9
...
c93141e68f
@ -1,28 +0,0 @@
|
|||||||
---
|
|
||||||
import type { Input as Props } from 'types';
|
|
||||||
|
|
||||||
const { type, name, label, autocomplete, placeholder} = Astro.props;
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<>
|
|
||||||
{
|
|
||||||
name && (
|
|
||||||
<div class="mb-6">
|
|
||||||
{label && (
|
|
||||||
<label for={name} class="block text-sm font-medium">
|
|
||||||
{label}
|
|
||||||
</label>
|
|
||||||
)}
|
|
||||||
<input
|
|
||||||
type={type}
|
|
||||||
name={name}
|
|
||||||
id={name}
|
|
||||||
autocomplete={autocomplete}
|
|
||||||
placeholder={placeholder}
|
|
||||||
class="py-3 px-4 block w-full text-md rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-slate-900"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
</>
|
|
@ -1,25 +1,24 @@
|
|||||||
import defaultTheme from 'tailwindcss/defaultTheme'
|
import defaultTheme from 'tailwindcss/defaultTheme';
|
||||||
import typographyPlugin from '@tailwindcss/typography'
|
import typographyPlugin from '@tailwindcss/typography';
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ['./src/**/*.{astro,html,js,jsx,json,md,mdx,svelte,ts,tsx,vue}'],
|
content: ['./src/**/*.{astro,html,js,jsx,json,md,mdx,svelte,ts,tsx,vue}'],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
primary: 'var(--aw-color-primary)',
|
primary: 'var(--aw-color-primary)',
|
||||||
secondary: 'var(--aw-color-secondary)',
|
secondary: 'var(--aw-color-secondary)',
|
||||||
accent: 'var(--aw-color-accent)',
|
accent: 'var(--aw-color-accent)',
|
||||||
default: 'var(--aw-color-text-default)',
|
default: 'var(--aw-color-text-default)',
|
||||||
muted: 'var(--aw-color-text-muted)',
|
muted: 'var(--aw-color-text-muted)',
|
||||||
},
|
},
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
sans: ['var(--aw-font-sans, ui-sans-serif)', ...defaultTheme.fontFamily.sans],
|
sans: ['var(--aw-font-sans, ui-sans-serif)', ...defaultTheme.fontFamily.sans],
|
||||||
serif: ['var(--aw-font-serif, ui-serif)', ...defaultTheme.fontFamily.serif],
|
serif: ['var(--aw-font-serif, ui-serif)', ...defaultTheme.fontFamily.serif],
|
||||||
heading: ['var(--aw-font-heading, ui-sans-serif)', ...defaultTheme.fontFamily.sans],
|
heading: ['var(--aw-font-heading, ui-sans-serif)', ...defaultTheme.fontFamily.sans],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
plugins: [typographyPlugin],
|
plugins: [typographyPlugin],
|
||||||
darkMode: 'class',
|
darkMode: 'class',
|
||||||
}
|
};
|
||||||
|
|
||||||
|
8
front/tailwind.config.mjs
Normal file
8
front/tailwind.config.mjs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
export default {
|
||||||
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user