diff --git a/app/assets/stylesheets/application.tailwind.css b/app/assets/stylesheets/application.tailwind.css index 2fef6da..a805d8a 100644 --- a/app/assets/stylesheets/application.tailwind.css +++ b/app/assets/stylesheets/application.tailwind.css @@ -6,8 +6,22 @@ html, body { /* background-color: rgb(252, 251, 248); */ } -table, dd { - font-family: "Ubuntu Mono", monospace; +dd { + font-family: "Noto Sans Mono", monospace; + font-optical-sizing: auto; + font-weight: 400; + font-style: normal; + font-variation-settings: + "wdth" 100; +} + +.mono { + font-family: "Noto Sans Mono", monospace; + font-optical-sizing: auto; + font-weight: 400; + font-style: normal; + font-variation-settings: + "wdth" 100; } .pagination a { diff --git a/app/models/message.rb b/app/models/message.rb index 0e4e963..f22b2f0 100644 --- a/app/models/message.rb +++ b/app/models/message.rb @@ -35,7 +35,7 @@ class Message < ApplicationRecord def status_label if status == 'accepted' - 'Accepted' + 'Pending' elsif status == 'root_ready' 'Root Ready' elsif status == 'dispatch_success' diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 821e855..0c69f67 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -7,7 +7,7 @@ <%= csp_meta_tag %> - + <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> <%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %> diff --git a/app/views/messages/_message.html.erb b/app/views/messages/_message.html.erb index f5ed201..4e59203 100644 --- a/app/views/messages/_message.html.erb +++ b/app/views/messages/_message.html.erb @@ -1,18 +1,20 @@
Hash |
---|