mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-20 04:01:40 +03:00
move lineHeight out of config
This commit is contained in:
parent
2461f2629f
commit
dc5637e943
@ -707,7 +707,6 @@ sizeStyle size width elementType =
|
|||||||
Small ->
|
Small ->
|
||||||
{ fontSize = 15
|
{ fontSize = 15
|
||||||
, height = 36
|
, height = 36
|
||||||
, lineHeight = 15
|
|
||||||
, sidePadding = 16
|
, sidePadding = 16
|
||||||
, imageHeight = 15
|
, imageHeight = 15
|
||||||
, shadowHeight = 2
|
, shadowHeight = 2
|
||||||
@ -717,7 +716,6 @@ sizeStyle size width elementType =
|
|||||||
Medium ->
|
Medium ->
|
||||||
{ fontSize = 17
|
{ fontSize = 17
|
||||||
, height = 45
|
, height = 45
|
||||||
, lineHeight = 19
|
|
||||||
, sidePadding = 16
|
, sidePadding = 16
|
||||||
, imageHeight = 15
|
, imageHeight = 15
|
||||||
, shadowHeight = 3
|
, shadowHeight = 3
|
||||||
@ -727,7 +725,6 @@ sizeStyle size width elementType =
|
|||||||
Large ->
|
Large ->
|
||||||
{ fontSize = 20
|
{ fontSize = 20
|
||||||
, height = 56
|
, height = 56
|
||||||
, lineHeight = 22
|
|
||||||
, sidePadding = 16
|
, sidePadding = 16
|
||||||
, imageHeight = 20
|
, imageHeight = 20
|
||||||
, shadowHeight = 4
|
, shadowHeight = 4
|
||||||
@ -752,7 +749,15 @@ sizeStyle size width elementType =
|
|||||||
config.height
|
config.height
|
||||||
|
|
||||||
Button ->
|
Button ->
|
||||||
config.lineHeight
|
case size of
|
||||||
|
Small ->
|
||||||
|
15
|
||||||
|
|
||||||
|
Medium ->
|
||||||
|
19
|
||||||
|
|
||||||
|
Large ->
|
||||||
|
22
|
||||||
in
|
in
|
||||||
[ Css.fontSize (Css.px config.fontSize)
|
[ Css.fontSize (Css.px config.fontSize)
|
||||||
, Css.borderRadius (Css.px 8)
|
, Css.borderRadius (Css.px 8)
|
||||||
|
Loading…
Reference in New Issue
Block a user