1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

Merge branch 'master' into develop

This commit is contained in:
Fedor Katurov 2020-10-31 21:05:01 +07:00
commit ab1bfd600a
52 changed files with 1264 additions and 226 deletions

View file

@ -175,3 +175,13 @@ $login_dialog_padding: $gap $gap 30px $gap;
background: transparentize(white, 0.95);
}
}
@mixin clamp($lines, $line: 1em) {
max-height: $line * $lines;
overflow: hidden;
-webkit-line-clamp: $lines;
line-clamp: $lines;
display: -webkit-box;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}