-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
32 lines (30 loc) · 988 Bytes
/
tailwind.config.ts
File metadata and controls
32 lines (30 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) Mysten Labs, Inc.
// Modifications Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import colors from 'tailwindcss/colors';
import { type Config } from 'tailwindcss';
// Note: exception for the tailwind preset import
import uiKitResponsivePreset from '../../apps/ui-kit/src/lib/tailwind/responsive.presets';
export default {
presets: [uiKitResponsivePreset],
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./../ui-kit/src/lib/**/*.{js,jsx,ts,tsx}',
'./../core/src/components/**/*.{ts,jsx,tsx}',
],
darkMode: 'selector',
theme: {
extend: {
colors: {
white: colors.white,
black: colors.black,
transparent: colors.transparent,
inherit: colors.inherit,
},
height: {
header: '80px',
'mobile-header': '120px',
},
},
},
} satisfies Partial<Config>;