File tree 1 file changed +33
-1
lines changed
1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ module React.Basic.Emotion
23
23
, auto
24
24
, inherit
25
25
, unset
26
+ , initial
27
+ , revert
28
+ , borderBox
29
+ , contentBox
26
30
, hidden
27
31
, visible
28
32
, scroll
@@ -36,6 +40,10 @@ module React.Basic.Emotion
36
40
, solid
37
41
, ellipsis
38
42
, underline
43
+ , fixed
44
+ , absolute
45
+ , relative
46
+ , sticky
39
47
, block
40
48
, inlineBlock
41
49
, flex
@@ -173,7 +181,7 @@ foreign import css :: forall r. Homogeneous r StyleProperty => { | r } -> Style
173
181
174
182
foreign import important :: StyleProperty -> StyleProperty
175
183
176
- foreign import keyframes :: forall r . Homogeneous r StyleProperty => { | r } -> StyleProperty
184
+ foreign import keyframes :: forall r . Homogeneous r Style => { | r } -> StyleProperty
177
185
178
186
nested :: Style -> StyleProperty
179
187
nested = unsafeCoerce
@@ -217,6 +225,18 @@ inherit = str "inherit"
217
225
unset :: StyleProperty
218
226
unset = str " unset"
219
227
228
+ initial :: StyleProperty
229
+ initial = str " initial"
230
+
231
+ revert :: StyleProperty
232
+ revert = str " revert"
233
+
234
+ borderBox :: StyleProperty
235
+ borderBox = str " border-box"
236
+
237
+ contentBox :: StyleProperty
238
+ contentBox = str " content-box"
239
+
220
240
hidden :: StyleProperty
221
241
hidden = str " hidden"
222
242
@@ -256,6 +276,18 @@ ellipsis = str "ellipsis"
256
276
underline :: StyleProperty
257
277
underline = str " underline"
258
278
279
+ fixed :: StyleProperty
280
+ fixed = str " fixed"
281
+
282
+ absolute :: StyleProperty
283
+ absolute = str " absolute"
284
+
285
+ relative :: StyleProperty
286
+ relative = str " relative"
287
+
288
+ sticky :: StyleProperty
289
+ sticky = str " sticky"
290
+
259
291
block :: StyleProperty
260
292
block = str " block"
261
293
You can’t perform that action at this time.
0 commit comments