Ionic – Hide Scrollbar

Table of Contents

Code

Hide Scrollbar

				
					ion-content {
  --offset-bottom: auto!important; //for Scroll ability
  --overflow: hidden;
  overflow: auto;
  &::-webkit-scrollbar {
    display: none;
  }
  // width: calc(100% + 15px);
}
				
			

Custom Scrollbar

				
					ion-content {
  --offset-bottom: auto !important; // for scroll ability
  --overflow: hidden;               // scrollbar hidden
  overflow: auto;                   
  &::-webkit-scrollbar {
    width: 0.25rem;
  }
  &::-webkit-scrollbar-track {
    background: #1e1e24;
  }
  &::-webkit-scrollbar-thumb {
    background: #4444b4;
  }
}