From ec233eb63741148a52f07c7245b4c04c22f28503 Mon Sep 17 00:00:00 2001 From: Ariel Juodziukynas Date: Mon, 9 Feb 2026 16:52:47 -0300 Subject: [PATCH 1/2] Limit width of table cells to not go over 100% width --- app/assets/stylesheets/application.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index b2fa9f0..3ae3f82 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -117,6 +117,14 @@ th { background-color: #f2f2f2; } +td:nth-child(1), td:nth-child(3) { + max-width: 40vw; + overflow: auto; +} +td:last-child { + width: 120px; +} + /* Banner styles - using styleguide colors where possible */ .banner { position: fixed; From e90e8def444eb3dee379b605eafa408edbc401ef Mon Sep 17 00:00:00 2001 From: Ariel Juodziukynas Date: Mon, 9 Feb 2026 17:10:33 -0300 Subject: [PATCH 2/2] Update brakeman --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index aad5163..98d163e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -101,7 +101,7 @@ GEM bootstrap-sass (3.4.1) autoprefixer-rails (>= 5.2.1) sassc (>= 2.0.0) - brakeman (8.0.1) + brakeman (8.0.2) racc builder (3.3.0) capybara (3.40.0)