Skip to main content

CSS - Tricks

& .breadcrumbs-container .breadcrumb span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
}
.element::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.element {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}