diff --git a/README.md b/README.md index e517dfb4..22135250 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Ruby Tests](https://github.com/sanger/gatekeeper/actions/workflows/ruby_test.yml/badge.svg)](https://github.com/sanger/gatekeeper/actions/workflows/ruby_test.yml) [![codecov](https://codecov.io/gh/sanger/gatekeeper/graph/badge.svg?token=VbxDtCNFAh)](https://codecov.io/gh/sanger/gatekeeper) -# Gatekeeper +# Reflected K Logo Gatekeeper Gatekeeper is used to track the production and validation of batches of tag plates for sequencing. It is designed to interface with the [Sequencescape](https://github.com/sanger/sequencescape) LIMS. diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js index a3d7d420..eadf8b63 100644 --- a/app/assets/config/manifest.js +++ b/app/assets/config/manifest.js @@ -1,2 +1,3 @@ //= link application.css //= link application.js +//= link gate-kk.svg diff --git a/app/assets/images/gate-kk.svg b/app/assets/images/gate-kk.svg new file mode 100644 index 00000000..8068c60d --- /dev/null +++ b/app/assets/images/gate-kk.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + diff --git a/app/assets/stylesheets/gatekeeper.scss b/app/assets/stylesheets/gatekeeper.scss index 99ded5d1..89b4ad02 100644 --- a/app/assets/stylesheets/gatekeeper.scss +++ b/app/assets/stylesheets/gatekeeper.scss @@ -24,6 +24,12 @@ h1 { padding: 0.5em; } +.logo { + margin-bottom: -11px; + margin-right: -11px; + vertical-align: baseline; +} + .gk-section { text-align: justify; } diff --git a/app/views/pages/index.erb b/app/views/pages/index.erb index a4779d32..8eff547a 100644 --- a/app/views/pages/index.erb +++ b/app/views/pages/index.erb @@ -1,5 +1,8 @@
-

<%= Gatekeeper::Application.config.name %>

+

+ <%= image_tag 'gate-kk.svg', alt: 'Reflected K Logo', class: 'logo'%> + <%= Gatekeeper::Application.config.name %> +

Register Lots
diff --git a/config/application.rb b/config/application.rb index b987323b..fd5f673f 100644 --- a/config/application.rb +++ b/config/application.rb @@ -34,7 +34,7 @@ class Application < Rails::Application config.i18n.fallbacks = [I18n.default_locale] # Ensures precompiling is faster by not loading the application - config.assets.initialize_on_precompile = false + config.assets.initialize_on_precompile = true config.disable_animations = false config.destroyable_states = %w[pending available] diff --git a/public/favicon.ico b/public/favicon.ico index e69de29b..b29d025f 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ