First Upload

This commit is contained in:
2024-10-24 19:11:39 +00:00
commit c56235352f
149 changed files with 443280 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
@mixin ellipsis($width: 100%) {
display: inline-block;
max-width: $width;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}