Skip to content

Commit 00138fd

Browse files
committed
Add position helpers
1 parent d39f6b3 commit 00138fd

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

src/React/Basic/Emotion.purs

+33-1
Original file line numberDiff line numberDiff 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

174182
foreign 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

178186
nested :: Style -> StyleProperty
179187
nested = unsafeCoerce
@@ -217,6 +225,18 @@ inherit = str "inherit"
217225
unset :: StyleProperty
218226
unset = 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+
220240
hidden :: StyleProperty
221241
hidden = str "hidden"
222242

@@ -256,6 +276,18 @@ ellipsis = str "ellipsis"
256276
underline :: StyleProperty
257277
underline = 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+
259291
block :: StyleProperty
260292
block = str "block"
261293

0 commit comments

Comments
 (0)