// =============================================================================
// Core -> Mixins -> Text Truncate
// =============================================================================

.text-truncate() {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
