File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,18 @@ outset = Stroke $ fromString "outset"
5050border :: Stroke -> Size Abs -> Color -> CSS
5151border a b c = key (fromString " border" ) $ tuple3 a b c
5252
53+ borderTop :: Stroke -> Size Abs -> Color -> CSS
54+ borderTop a b c = key (fromString " border-top" ) $ tuple3 a b c
55+
56+ borderBottom :: Stroke -> Size Abs -> Color -> CSS
57+ borderBottom a b c = key (fromString " border-bottom" ) $ tuple3 a b c
58+
59+ borderLeft :: Stroke -> Size Abs -> Color -> CSS
60+ borderLeft a b c = key (fromString " border-left" ) $ tuple3 a b c
61+
62+ borderRight :: Stroke -> Size Abs -> Color -> CSS
63+ borderRight a b c = key (fromString " border-right" ) $ tuple3 a b c
64+
5365borderColor :: Color -> CSS
5466borderColor = key $ fromString " border-color"
5567
You can’t perform that action at this time.
0 commit comments