Changes
1 changed files (+44/-3)
-
-
@@ -24,15 +24,19 @@ infoArea params =rows |> Container.build [ columns |> gapped 10 |> gapped 5 |> aligned Container.End |> withOutline { color = "currentColor" , width = 0.2 , radius = 0.3 } |> padded 3 |> Container.build [ scaleChcker |> noGrow, legends params |> noGrow ] |> padded 2 |> Container.build [ scaleChcker |> noGrow , legends params |> noGrow , legal ] ]
-
@@ -75,6 +79,43 @@ ][ text "10mm" ] ] } legal : Item msg legal = rows |> gapped 0.5 |> aligned Container.End |> Container.build [ Item { width = Exactly 33.2, height = Exactly 2 } (\p size -> text_ [ x (String.fromFloat p.x) , y (String.fromFloat p.y) , fontSize (String.fromFloat size.height) , fontWeight "100" , textAnchor "left" , dominantBaseline "hanging" , fill "currentColor" ] [ text "© Shota FUJI, licensed under CC BY 4.0" ] ) , Item { width = Exactly 61, height = Exactly 2 } (\p size -> text_ [ x (String.fromFloat p.x) , y (String.fromFloat p.y) , fontSize (String.fromFloat size.height) , fontWeight "100" , textAnchor "left" , dominantBaseline "hanging" , fill "currentColor" ] [ text "Barlow font © 2017 The Barlow Project Authors, SIL Open Font License 1.1" ] ) ] legends : Parameters -> Item msg
-