/*
 * Base structure
 */

/* Move down content because we have a fixed navbar that is 50px tall */
body {
  height: 94vh;
}
/*
body height ya que al cliquear fuera del body da el siguiente error:
https://github.com/A9T9/Kantu/issues/67
Hello, I've recently discovered that in an application build with Angular2, any click outside the root component results in this error:
content_script.js:31496 Uncaught Error: getElementByLocator: fail to find element based on the locator, /html/html
*/

#maindiv
{
margin-top:50px;
}

/*
 * Typography
 */

h1 {
  margin-bottom: 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid #eee;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 51px;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  border-right: 1px solid #eee;
  background: #292b2c;
}

/* Sidebar navigation */
.sidebar {
  padding-left: 0;
  padding-right: 0;
}

.sidebar .nav {
  margin-bottom: 20px;
}

.sidebar .nav-item {
  width: 100%;
}

.sidebar .nav-item + .nav-item {
  margin-left: 0;
}

.sidebar .nav-link {
  border-radius: 0;
}

/*
 * Dashboard
 */

 /* Placeholders */
.placeholders {
  padding-bottom: 3rem;
}

.placeholder img {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
