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"
50
50
border :: Stroke -> Size Abs -> Color -> CSS
51
51
border a b c = key (fromString " border" ) $ tuple3 a b c
52
52
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
+
53
65
borderColor :: Color -> CSS
54
66
borderColor = key $ fromString " border-color"
55
67
You can’t perform that action at this time.
0 commit comments