From 39f5e6979832e0379e69bd3f4e5fe74d711aec1c Mon Sep 17 00:00:00 2001 From: Michael Petro Date: Wed, 4 Jan 2023 13:59:26 -0500 Subject: [PATCH] css, cap dropdown menu size dynamically --- airflow/www/static/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/www/static/css/main.css b/airflow/www/static/css/main.css index 9e63eb5ad06ed..50b085ae4509d 100644 --- a/airflow/www/static/css/main.css +++ b/airflow/www/static/css/main.css @@ -64,7 +64,7 @@ div.container { /* If a category has a lot of menu items, we cap it, and add a scroll bar */ .navbar li.dropdown .dropdown-menu { - max-height: 300px; + max-height: 85vh; overflow-y: auto; }