diff --git a/app/views/spree/admin/orders/_shipment.html.haml b/app/views/spree/admin/orders/_shipment.html.haml index 7988592754..264ab73ca3 100644 --- a/app/views/spree/admin/orders/_shipment.html.haml +++ b/app/views/spree/admin/orders/_shipment.html.haml @@ -26,7 +26,7 @@ = Spree.t(:price) %th = Spree.t(:quantity) - %th + %th.force-rounded-right = Spree.t(:total) %th.orders-actions.actions{ "data-hook" => "admin_order_form_line_items_header_actions" } diff --git a/app/webpacker/css/admin/v2/components/tables.scss b/app/webpacker/css/admin/v2/components/tables.scss index d4e9f56778..8f99eb30c7 100644 --- a/app/webpacker/css/admin/v2/components/tables.scss +++ b/app/webpacker/css/admin/v2/components/tables.scss @@ -4,6 +4,14 @@ table { background-color: white; } +table thead tr:first-child th:first-child { + border-top-left-radius: 3px; +} + +table thead tr:first-child th:last-child, +table thead th.force-rounded-right { + border-top-right-radius: 3px; +} table thead th { background-color: $v2-medium-light-grey; border: none;