From 5e69320ff59a12cfb540d7087d691799e040a2ce Mon Sep 17 00:00:00 2001 From: saunmanoj888 Date: Sat, 27 Aug 2022 15:31:19 +0530 Subject: [PATCH] Fix header alignmnet --- app/views/spree/users/show.html.haml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/spree/users/show.html.haml b/app/views/spree/users/show.html.haml index dcf1b3c4c0..bad6dc9b62 100644 --- a/app/views/spree/users/show.html.haml +++ b/app/views/spree/users/show.html.haml @@ -23,14 +23,14 @@ = render 'developer_settings' if @user.show_api_key_view .row.tabset-ctrl#account-tabs{ style: 'margin-bottom: 100px', navigate: 'true', selected: 'orders', prefix: 'account' } - .small.12.medium-3.columns.tab{ name: "orders" } + .small.12.medium-2.columns.tab{ name: "orders" } %a=t('.tabs.orders') - if Spree::Config.stripe_connect_enabled && Stripe.publishable_key - .small.12.medium-3.columns.tab{ name: "cards" } + .small.12.medium-2.columns.tab{ name: "cards" } %a=t('.tabs.cards') - .small.12.medium-3.columns.tab{ name: "transactions" } + .small.12.medium-2.columns.tab{ name: "transactions" } %a=t('.tabs.transactions') - .small.12.medium-3.columns.tab{ name: "settings" } + .small.12.medium-2.columns.tab{ name: "settings" } %a=t('.tabs.settings') // the api_keys partial is the only content for now, so we have to hide the whole tab for now // if there is new content, we will need to handle this inside the developer_settings partial