From fee82a400491c7730e6f5b9126bd154db9763c77 Mon Sep 17 00:00:00 2001 From: Torsten Date: Tue, 24 Jan 2023 10:49:16 +0200 Subject: [PATCH] restrict body to hd --- app/views/layouts/application.haml | 2 +- config/deploy.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/layouts/application.haml b/app/views/layouts/application.haml index e487f79..9aa533a 100644 --- a/app/views/layouts/application.haml +++ b/app/views/layouts/application.haml @@ -32,7 +32,7 @@ - if false %script{:src => "https://cdn.tailwindcss.com"} - %body.max-w-screen-2xl.xl:mx-auto + %body.xl:mx-auto{class: "max-w-[1920px]"} = render "layouts/header" = render "layouts/messages" = yield diff --git a/config/deploy.rb b/config/deploy.rb index c2d65be..f765f35 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -9,6 +9,7 @@ require 'mina/rbenv' # for rbenv support. (https://rbenv.org) # branch - Branch name to deploy. (needed by mina/git) set :application_name, 'volunteers' +#set :domain, 'www.rubydesign.fi' set :domain, '192.168.129.10' set :deploy_to, '/home/feenix/volunteers' set :repository, "https://github.com/HubFeenixMakers/volunteers.git"