diff --git a/app/assets/stylesheets/darkswarm/account.scss b/app/assets/stylesheets/darkswarm/account.scss
index 772a87cb2f..d73e4b7367 100644
--- a/app/assets/stylesheets/darkswarm/account.scss
+++ b/app/assets/stylesheets/darkswarm/account.scss
@@ -143,8 +143,14 @@
}
}
-table.full {
- width: 100%;
+table {
+ &.full {
+ width: 100%;
+ }
+
+ &.top-rounded {
+ border-radius: $radius-medium $radius-medium 0 0;
+ }
}
// Note this relies on the
using `.show-for-large-up` as well.
diff --git a/app/views/spree/users/_transactions.html.haml b/app/views/spree/users/_transactions.html.haml
index b6e6b8c36c..75c479aada 100644
--- a/app/views/spree/users/_transactions.html.haml
+++ b/app/views/spree/users/_transactions.html.haml
@@ -2,7 +2,7 @@
- if @payments_requiring_action.present?
.active_table.requiring-authorization
%h3= t(".authorization_required")
- %table.full
+ %table.full.top-rounded
%tr
%th= t :transaction
%th= t :transaction_date
|