feat: new sources section + sidebar component

This commit is contained in:
Siddhant Rai
2024-08-15 18:23:13 +05:30
parent 3c683f2192
commit 0afda5dc27
4 changed files with 245 additions and 77 deletions

View File

@@ -433,3 +433,11 @@ template {
.bottom-safe {
bottom: env(safe-area-inset-bottom, 0);
}
.ellipsis-text {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}