/* MANAGER.CSS used for whole Storybook. */
/* font set in shared.css */

/* Let's do as little as possible here, because that could be in the way for upgrades of Storybook.
 * Describe what something does, in case we need to redo it after an upgrade
 */

/* Default is 400, but 600 is Leaseplan's regular. */
.sidebar-item {
  font-weight: 600;
}

/* The folder icon is purple cannot be overridden by the theme. */
.sidebar-item[data-nodetype='group'] svg {
  color: inherit;
}

/* Shift up the header, so the logo touches the window's edge. */
.sidebar-header {
  margin-top: -20px !important;
}

/* In theme, when provided brandImage and brandTitle, it shows only image with
 * title as 'title' attribute. We want to show both. */
.sidebar-header a:after {
  content: attr(title);
  display: block;
  margin-top: 8px;
}
