From 06fd1b5e4d9ab41d90ae1fcad79f6edfe3e820e2 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Fri, 10 Jul 2020 16:11:49 -0700 Subject: [PATCH] logo gets the vertically-centered flexbox treatment in jinja template (#10281) --- superset-frontend/stylesheets/superset.less | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/superset-frontend/stylesheets/superset.less b/superset-frontend/stylesheets/superset.less index 2eca35e633..36b01133ff 100644 --- a/superset-frontend/stylesheets/superset.less +++ b/superset-frontend/stylesheets/superset.less @@ -552,3 +552,11 @@ td.filtered { .select2-container-multi { width: 100% !important; } + +// Remove this when the jinja menu/navbar is replaced with react. +// This style already exists in that view +.navbar-brand { + display: flex; + flex-direction: column; + justify-content: center; +}