File tree 4 files changed +58
-337
lines changed
4 files changed +58
-337
lines changed Original file line number Diff line number Diff line change 10
10
"dependencies" : {
11
11
"@tailwindcss/typography" : " ^0.2.0" ,
12
12
"@tailwindcss/ui" : " ^0.6.2" ,
13
+ "autoprefixer" : " ^10.0.1" ,
13
14
"fontsource-noto-sans-jp" : " ^3.0.9" ,
14
15
"fontsource-noto-serif-jp" : " ^3.0.3" ,
15
16
"fontsource-roboto-mono" : " ^3.0.3" ,
41
42
"lodash" : " ^4.17.20" ,
42
43
"postcss" : " ^8.1.2" ,
43
44
"postcss-import" : " ^13.0.0" ,
44
- "postcss-preset-env " : " ^6.7.0 " ,
45
+ "postcss-nested " : " ^5.0.1 " ,
45
46
"preact" : " ^10.5.5" ,
46
47
"preact-render-to-string" : " ^5.1.11" ,
47
48
"react" : " ^16.14.0" ,
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ module.exports = () => ({
2
2
plugins : [
3
3
require ( "postcss-import" ) ,
4
4
require ( "tailwindcss" ) ,
5
- require ( "postcss-preset-env" ) ( { stage : 1 } ) ,
5
+ require ( "postcss-nested" ) ,
6
+ require ( "autoprefixer" )
6
7
] ,
7
8
} )
Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ module.exports = {
49
49
} ,
50
50
} ,
51
51
extend : {
52
+ fontSize : {
53
+ xxs : [ '0.5rem' , '1rem' ] ,
54
+ } ,
52
55
spacing : {
53
56
72 : "18rem" ,
54
57
80 : "20rem" ,
@@ -124,6 +127,10 @@ module.exports = {
124
127
MsTextCombineHorizontal : 'all' ,
125
128
textCombineUpright : 'all' ,
126
129
} ,
130
+ '.outline' : {
131
+ WebkitTextStroke : '1px black' ,
132
+ WebkitTextFillColor : 'white' ,
133
+ } ,
127
134
}
128
135
addUtilities ( newUtilities )
129
136
addComponents ( {
You can’t perform that action at this time.
0 commit comments