12345678910111213141516171819202122232425 |
- @mixin webkit-line-clamp ($sum) {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: $sum;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- @mixin position-sticky ($zIndex) {
- position: sticky;
- top: 0;
- z-index: $zIndex;
- }
- @mixin display-flex-center {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- @mixin display-flex-between {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
|