From dd902ea8742378c7476727333f354e295637b094 Mon Sep 17 00:00:00 2001 From: Nicolas Dossou-Gbete Date: Sat, 9 Nov 2024 19:38:30 +0100 Subject: [PATCH] Fix some tables showing some gaps in Firefox Tables from the cart and checkout pages would show some gaps where the table content doesn't extend to take all the available space. Not forcing the `display` CSS property of table elements to `block` appears to fix without adverse side effects. --- app/webpacker/css/darkswarm/cart-page.scss | 2 -- app/webpacker/css/darkswarm/split-checkout.scss | 3 --- 2 files changed, 5 deletions(-) diff --git a/app/webpacker/css/darkswarm/cart-page.scss b/app/webpacker/css/darkswarm/cart-page.scss index c63561930b9..0f2f3146ee3 100644 --- a/app/webpacker/css/darkswarm/cart-page.scss +++ b/app/webpacker/css/darkswarm/cart-page.scss @@ -11,8 +11,6 @@ #cart-detail { width: 100%; - display: block; - overflow-x: auto; .cart-item-delete, .bought-item-delete { diff --git a/app/webpacker/css/darkswarm/split-checkout.scss b/app/webpacker/css/darkswarm/split-checkout.scss index 2088f972861..639d6e5ae5e 100644 --- a/app/webpacker/css/darkswarm/split-checkout.scss +++ b/app/webpacker/css/darkswarm/split-checkout.scss @@ -394,9 +394,6 @@ } #line-items { - display: block; - overflow-x: auto; - h5 { background-color: transparent; }