From 3af3c6bbb0666148a827e537bca41b45284a0fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Fri, 6 Sep 2024 17:21:23 +0100 Subject: [PATCH] Fix kernel dialog sections sizing (#69) * Overwrite the default column flex layout to make sure that both tables are visible * Bump version --- package.json | 2 +- style/base.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b50ae73..37da91c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-launchpad", - "version": "1.0.1", + "version": "1.0.2", "description": "A redesigned JupyterLab launcher", "keywords": [ "jupyter", diff --git a/style/base.css b/style/base.css index 898c90e..7fc602b 100644 --- a/style/base.css +++ b/style/base.css @@ -228,6 +228,11 @@ display: none; } +.jp-KernelSelector-Dialog > .jp-Dialog-content > .jp-Dialog-body { + /* overwrite the default column flex layout to make sure that both tables are visible */ + display: grid; +} + .jp-KernelSelector-SelectButton { display: none; }