File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
- const defaultTheme = require ( 'tailwindcss/defaultTheme' )
1
+ const dt = require ( 'tailwindcss/defaultTheme' )
2
2
3
3
module . exports = {
4
4
mode : 'jit' ,
5
5
purge : [
6
- './docs/App.svelte' ,
7
- './docs/index.html'
6
+ './docs/*.{html,js,svelte}'
8
7
] ,
9
8
theme : {
10
9
extend : {
11
10
fontFamily : {
12
- sans : [ 'Inter' , ...defaultTheme . fontFamily . sans ]
11
+ sans : [ 'Inter' , ...dt . fontFamily . sans ]
13
12
}
14
13
} ,
15
14
screens : {
Original file line number Diff line number Diff line change 11
11
@apply text-blue-400 hover:text-blue-600 underline;
12
12
}
13
13
button {
14
- @apply w-40 h-12 text-gray-600 hover:text-gray-900 text-xs font-bold tracking-wide bg-white border border-gray-300 rounded-sm focus:outline-none focus:ring m-2;
14
+ @apply w-40 h-12 text-gray-600 hover:text-gray-900 text-xs font-bold tracking-wide bg-white border border-gray-300 rounded-sm focus:outline-none focus:ring px-2 m-2;
15
15
}
16
16
button .selected {
17
17
@apply bg-blue-200;
You can’t perform that action at this time.
0 commit comments