feat: implement AutoTextarea component for dynamic height adjustment in text areas

This commit is contained in:
Christopher
2026-01-22 10:47:44 -08:00
parent 64fbca7fbb
commit f589635d03
5 changed files with 66 additions and 5 deletions
+20
View File
@@ -1311,4 +1311,24 @@ a.btn-primary:visited {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: var(--background);
}
::-webkit-scrollbar-thumb {
background: var(--border);
border-radius: var(--radius-full);
border: 2px solid var(--background); /* Creates a padding effect */
}
::-webkit-scrollbar-thumb:hover {
background: var(--border-hover);
}