@mixin cutoff {
  display: inline-block; // because ellipsis doesn't work on inline-elements
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
