/* SIDEBAR RESIZE HANDLE */

#sidebar-resize-handle {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  cursor: ew-resize;
  z-index: 10;
  background: transparent;
  transition: background var(--ease);
}

#sidebar-resize-handle:hover,
#sidebar-resize-handle:active {
  background: var(--app-accent);
  opacity: 0.4;
}

/* Sidebar must be relative for the handle to position correctly */
#edit-sidebar {
  position: relative;
}
