ui: chat sidebar ui

This commit is contained in:
2024-03-25 18:00:39 +08:00
parent ca05296317
commit ef1ef50fd5
11 changed files with 212 additions and 18 deletions

View File

@@ -119,6 +119,24 @@ body {
@apply bg-[url('~/assets/background-pattern.svg')] dark:bg-[url('~/assets/background-pattern-dark.svg')];
}
::-webkit-scrollbar {
--bar-width: 5px;
width: var(--bar-width);
height: var(--bar-width)
}
::-webkit-scrollbar-track {
background-color: transparent
}
::-webkit-scrollbar-thumb {
--bar-color: rgba(0, 0, 0, .1);
background-color: var(--bar-color);
border-radius: 20px;
background-clip: content-box;
border: 1px solid transparent
}
/*
*::-webkit-scrollbar {
@apply w-1.5 h-1.5;
}
@@ -132,6 +150,7 @@ body {
@apply bg-neutral-300 dark:bg-neutral-700;
@apply hover:bg-neutral-400 hover:dark:bg-neutral-600;
}
*/
</style>
<style scoped>