diff --git a/src/ui/public/chrome/directives/app_switcher/app_switcher.less b/src/ui/public/chrome/directives/app_switcher/app_switcher.less
index e0e1197b17411..f6ad38223eda1 100644
--- a/src/ui/public/chrome/directives/app_switcher/app_switcher.less
+++ b/src/ui/public/chrome/directives/app_switcher/app_switcher.less
@@ -8,6 +8,8 @@
@transition-time: .65s;
@transition-delay: .2s;
+body { overflow-x: hidden; }
+
.app-links-wrapper {
width: @as-open-width;
position: fixed;
@@ -33,6 +35,9 @@
height: 70px;
width: @as-open-width;
list-style-type: none;
+ &.kibana {
+ background: url("~ui/images/kibana.svg") center / 160px 70px no-repeat #e8488b;
+ }
}
.bottom-apps {
position: absolute;
diff --git a/src/ui/public/styles/mixins.less b/src/ui/public/styles/mixins.less
index ceab159c3745d..983ddc1ecfd30 100644
--- a/src/ui/public/styles/mixins.less
+++ b/src/ui/public/styles/mixins.less
@@ -10,8 +10,8 @@
flex-shrink: 0;
}
}
-.real-flex-parent(@display: flex, @flow: column nowrap) {
- display: @display;
+.real-flex-parent(@flow: column nowrap) {
+ display: flex;
flex-flow: @flow;
}