//
// Copyright IBM Corp. 2021
//
// This source code is licensed under the Apache-2.0 license found in the
// LICENSE file in the root directory of this source tree.
//

// Text truncation at the end of text
/// @access public
/// @group utilities
@mixin text-truncate-end {
  display: inline-block;
  overflow: hidden;
  inline-size: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

// Text truncation at the beginning of text
/// @access public
/// @group utilities
@mixin text-truncate-front {
  display: inline-block;
  overflow: hidden;
  direction: rtl;
  inline-size: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
