diff --git a/.env.example b/.env.example index 378f3d4..a6f3032 100644 --- a/.env.example +++ b/.env.example @@ -31,6 +31,7 @@ # Service Integrations # +# BTCPAY_PUBLIC_URL='https://btcpay.example.com' # BTCPAY_API_URL='http://localhost:23001/api/v1' # BTCPAY_STORE_ID='' # BTCPAY_AUTH_TOKEN='' diff --git a/.env.test b/.env.test index c032b0e..aadec95 100644 --- a/.env.test +++ b/.env.test @@ -2,6 +2,7 @@ PRIMARY_DOMAIN=kosmos.org REDIS_URL='redis://localhost:6379/0' +BTCPAY_PUBLIC_URL='https://btcpay.example.com' BTCPAY_API_URL='http://btcpay.example.com/api/v1' BTCPAY_STORE_ID='123456' diff --git a/app/assets/stylesheets/components/buttons.css b/app/assets/stylesheets/components/buttons.css index b879634..dde8f3c 100644 --- a/app/assets/stylesheets/components/buttons.css +++ b/app/assets/stylesheets/components/buttons.css @@ -32,6 +32,11 @@ focus:ring-blue-400 focus:ring-opacity-75; } + .btn-emerald { + @apply bg-emerald-500 hover:bg-emerald-600 text-white + focus:ring-emerald-400 focus:ring-opacity-75; + } + .btn-red { @apply bg-red-600 hover:bg-red-700 text-white focus:ring-red-500 focus:ring-opacity-75; diff --git a/app/components/main_with_tabnav_component.html.erb b/app/components/main_with_tabnav_component.html.erb index 6c578a9..60884a5 100644 --- a/app/components/main_with_tabnav_component.html.erb +++ b/app/components/main_with_tabnav_component.html.erb @@ -1,5 +1,5 @@
-
+
<%= render partial: @tabnav_partial %>
diff --git a/app/components/modal_component.html.erb b/app/components/modal_component.html.erb index f8d4baf..43f6d10 100644 --- a/app/components/modal_component.html.erb +++ b/app/components/modal_component.html.erb @@ -12,7 +12,7 @@