source: trip-planner-front/node_modules/bootstrap/scss/mixins/_text-truncate.scss@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 168 bytes
Line 
1// Text truncate
2// Requires inline-block or block for proper styling
3
4@mixin text-truncate() {
5 overflow: hidden;
6 text-overflow: ellipsis;
7 white-space: nowrap;
8}
Note: See TracBrowser for help on using the repository browser.