5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-16 19:36:22 +00:00

Merge branch 'rails' into production.panel.sutty.nl

This commit is contained in:
f 2024-02-22 17:28:39 -03:00
commit b2017bedfa
No known key found for this signature in database
2 changed files with 20 additions and 1 deletions

View file

@ -54,6 +54,25 @@ $sizes: (
--background: #{$black};
--color: #{$cyan};
}
.btn-secondary {
background-color: $white;
color: $black;
border: none;
&:hover {
color: $black;
background-color: $cyan;
}
&:active {
background-color: $cyan;
}
&:focus {
box-shadow: 0 0 0 0.2rem $cyan;
}
}
}
// TODO: Encontrar la forma de generar esto desde los locales de Rails

View file

@ -573,7 +573,7 @@ class Site < ApplicationRecord
if !gems_installed? || gemfile_updated? || gemfile_lock_updated?
deploy_local.bundle
touch
::File.touch(gemfile_path)
FileUtils.touch(gemfile_path)
end
end