We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It could be useful to show more than one example:
/// /// @example scss /// .username { /// @include truncate; /// } /// /// @output css /// .username { /// overflow: hidden; /// text-overflow: ellipsis; /// white-space: nowrap; /// } /// /// @example scss /// .excerpt { /// @include truncate(5, 1.5em); /// } /// /// @output css /// .excerpt { /// display: block; /// overflow: hidden; /// display: -webkit-box; /// -webkit-box-orient: vertical; /// max-height: 7.5rem; /// overflow:hidden; /// overflow: hidden !important; /// line-height: 1.5; /// text-overflow: ellipsis; /// -webkit-line-clamp: 5; /// } ///
Thank you!
The text was updated successfully, but these errors were encountered:
Give my idea a chance, people? 😢
Sorry, something went wrong.
No branches or pull requests
It could be useful to show more than one example:
Thank you!
The text was updated successfully, but these errors were encountered: