Module Azimuth.Value

type value = [
| `center
| `center_left
| `center_right
| `far_left
| `far_right
| `left
| `left_side
| `leftwards
| `right
| `right_side
| `rightwards
]
type t = [
| Css_Value.Global.t
| Css_Value.Angle.t
| `behind'
| `behind of value
| value
]
val show : t -> string