aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Cart.elm
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-12-27 07:49:37 +0000
committerAkshay <[email protected]>2020-12-27 07:49:37 +0000
commit1c183165842b62ead796ba3f6e1547edcf37824e (patch)
tree406d999380c851db5fb42ec1098ce28527942a0a /frontend/src/Cart.elm
parentaddbf7d1a3ceb8d3164fc7745daed0affde78804 (diff)
finish styling cart, product and checkout
Diffstat (limited to 'frontend/src/Cart.elm')
-rw-r--r--frontend/src/Cart.elm7
1 files changed, 6 insertions, 1 deletions
diff --git a/frontend/src/Cart.elm b/frontend/src/Cart.elm
index 008d0bc..4f4cbef 100644
--- a/frontend/src/Cart.elm
+++ b/frontend/src/Cart.elm
@@ -246,5 +246,10 @@ view model =
246 ] 246 ]
247 ] 247 ]
248 ) 248 )
249 , a [ href "/checkout" ] [ text "Checkout" ] 249 , div
250 [ css [ textAlign right ] ]
251 [ furbyButton
252 []
253 [ a [ href "/checkout" ] [ text "Checkout" ] ]
254 ]
250 ] 255 ]