Skip to content

Commit

Permalink
Put border around cards to make them easier to differentiate.
Browse files Browse the repository at this point in the history
  • Loading branch information
abingham committed Mar 11, 2017
1 parent 81a727f commit 50dd055
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ACCUSchedule/View/PresenterCard.elm
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ presenterCard controlGroup model presenter =
, Options.css "margin-bottom" "10px"
, Elevation.e2
, Color.background Theme.background
, Options.css "border-width" "1px"
, Options.css "border-color" "black"
, Options.css "border-style" "solid"

]
[ Card.title
[ Color.text Color.black
Expand Down
3 changes: 3 additions & 0 deletions src/ACCUSchedule/View/ProposalCard.elm
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ proposalCard controlGroup model proposal =
, Options.onMouseEnter (Msg.RaiseProposal True proposal.id)
, Options.onMouseLeave (Msg.RaiseProposal False proposal.id)
, Color.background Theme.background
, Options.css "border-width" "1px"
, Options.css "border-color" "black"
, Options.css "border-style" "solid"
]
[ Card.title
[ Color.text Color.black
Expand Down

0 comments on commit 50dd055

Please sign in to comment.