@charset "UTF-8";


.scroll-parent {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;		
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }
  .scroll {
    position: relative;
    box-sizing: border-box;
    width: calc(100% + 2rem);
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
  }
  
  .scroll-child {
    position: relative;
    box-sizing: border-box;	
    top: 0rem;
    left: 0rem;
    width: calc(100% - 2rem);
    height: 100%;
  }
  
  

.ManagedList { /* scroll-parent */
	width: 100%;
	height: 100%;

    /* min-height: 0;
    flex: 1 1 0%;
    display: flex;
    flex-flow: column; */
}
.ManagedList-scroll {  /* scroll */
    /* min-height: 0;
    flex: 1 1 0%;*/
    /* overflow-y: auto; */
    height: 100%;
}
.ManagedList-pane { /* scroll-child */
	height: 100%;
	padding: 0.5rem;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;

	/* padding: 0.5rem;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
    overflow-x: hidden;
    min-width: 0; */
}


.LineEditor { /* scroll-parent */
	width: 100%;
	height: 100%;
}
.LineEditor-scroll { height: 100%; } /* scroll */
.LineEditor-pane { /* scroll-child */
	height: 100%;
	padding: 0.5rem;

	display: flex;
	flex-flow: column;
	justify-content: flex-start;
}

