From 9c70cbf6abfe08b5a10a513ef4197364e3aa86a8 Mon Sep 17 00:00:00 2001 From: Johnny Bouder <61591423+jbouder@users.noreply.github.com> Date: Tue, 28 May 2024 08:24:53 -0500 Subject: [PATCH] Fix JupyterHub 5/App Launcher Styling Issues (#291) * Misc styling fixes. * Update base bootstrap button styling to match mui button styling. --- jhub_apps/templates/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/jhub_apps/templates/style.css b/jhub_apps/templates/style.css index abe9bc50..00ec4be4 100644 --- a/jhub_apps/templates/style.css +++ b/jhub_apps/templates/style.css @@ -143,6 +143,8 @@ a:focus { .btn { font-family: var(--base-font-family) !important; font-weight: 400 !important; + border-radius: 4px !important; + padding: 6px 16px; } .btn-xs { @@ -368,6 +370,18 @@ a:focus { } /* Misc MUI */ +.container:not(.MuiBox-root) { + padding-top: 30px; +} + +.container.MuiBox-root { + max-width: unset; +} + +.card.MuiBox-root { + border: unset; +} + .MuiButton-containedPrimary:not(:disabled) { color: var(--light-text-color); background-color: var(--primary-color) !important;