UNPKG

@innovaccer/design-system

Version:

React components library project for Innovaccer Design System

41 lines (32 loc) 566 B
/** utility **/ .hide-scroll-bar::-webkit-scrollbar { height: 0px; /* Remove scrollbar space */ background: transparent; /* Optional: just make scrollbar invisible */ } .hide-scroll-bar { -ms-overflow-style: none; scrollbar-width: none; } .ellipsis { overflow: hidden; text-overflow: ellipsis; } .ellipsis--noWrap { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .cursor-pointer { cursor: pointer; } .white-space-nowrap { white-space: nowrap; } .white-space-pre { white-space: pre; } .bottom-0 { bottom: 0; }