// Text overflow
// Requires inline-block or block for proper styling

@mixin text-overflow() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@mixin text-overflow-strings($strings-count: 2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: $strings-count;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
