From 7b5f9fe5ce9638159617422e0a447d264bb62a89 Mon Sep 17 00:00:00 2001 From: Ben Pennell Date: Wed, 18 Oct 2023 09:10:44 -0400 Subject: [PATCH] Prevent embargo inputs from running off the side of the page --- app/assets/stylesheets/unc_custom.css.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/assets/stylesheets/unc_custom.css.scss b/app/assets/stylesheets/unc_custom.css.scss index c8c526091..5a51d31fa 100644 --- a/app/assets/stylesheets/unc_custom.css.scss +++ b/app/assets/stylesheets/unc_custom.css.scss @@ -1247,3 +1247,10 @@ Hide it entirely until the issue is resolved upstreeam margin-right: 0; } } + +.visibility { + /* this prevents the embargo inputs from running out of the side of their container */ + .form-inline { + display: block; + } +}