| 123456789101112131415161718192021222324252627 | .rows{    display: flex;    flex-direction:row;    align-items:center;}.rows-between{    justify-content:space-between;}.columns{    display: flex;    flex-direction:column;    align-items:center;    justify-content:space-between;}.eslipe {	overflow: hidden;	white-space: nowrap;	text-overflow: ellipsis;}.flex-start{	align-items:flex-start;}::-webkit-scrollbar{	width: 0;	height: 0;	color: transparent;}
 |