From 538e4e54d2811133796fb007825e73667c76fc8f Mon Sep 17 00:00:00 2001 From: Matt-Yorkley <9029026+Matt-Yorkley@users.noreply.github.com> Date: Wed, 8 Apr 2020 11:07:06 +0200 Subject: [PATCH] Set cart buttons to fixed width and expand when screen is too small --- .../stylesheets/darkswarm/shopping-cart.css.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/assets/stylesheets/darkswarm/shopping-cart.css.scss b/app/assets/stylesheets/darkswarm/shopping-cart.css.scss index 9a1a2efe8d..bd4a5019c8 100644 --- a/app/assets/stylesheets/darkswarm/shopping-cart.css.scss +++ b/app/assets/stylesheets/darkswarm/shopping-cart.css.scss @@ -115,3 +115,14 @@ height: 36px; } } + +.links { + .button { + padding: 1.125rem 0 1.1875rem; + width: 210px; + + @media all and (max-width: 480px) { + width: 100%; + } + } +}