File tree Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Expand file tree Collapse file tree 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
2323 , auto
2424 , inherit
2525 , unset
26+ , initial
27+ , revert
28+ , borderBox
29+ , contentBox
2630 , hidden
2731 , visible
2832 , scroll
@@ -36,6 +40,10 @@ module React.Basic.Emotion
3640 , solid
3741 , ellipsis
3842 , underline
43+ , fixed
44+ , absolute
45+ , relative
46+ , sticky
3947 , block
4048 , inlineBlock
4149 , flex
@@ -173,7 +181,7 @@ foreign import css :: forall r. Homogeneous r StyleProperty => { | r } -> Style
173181
174182foreign import important :: StyleProperty -> StyleProperty
175183
176- foreign import keyframes :: forall r . Homogeneous r StyleProperty => { | r } -> StyleProperty
184+ foreign import keyframes :: forall r . Homogeneous r Style => { | r } -> StyleProperty
177185
178186nested :: Style -> StyleProperty
179187nested = unsafeCoerce
@@ -217,6 +225,18 @@ inherit = str "inherit"
217225unset :: StyleProperty
218226unset = str " unset"
219227
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+
220240hidden :: StyleProperty
221241hidden = str " hidden"
222242
@@ -256,6 +276,18 @@ ellipsis = str "ellipsis"
256276underline :: StyleProperty
257277underline = str " underline"
258278
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+
259291block :: StyleProperty
260292block = str " block"
261293
You can’t perform that action at this time.
0 commit comments