Use voiceAssistant components (#98)

This commit is contained in:
lukasIO
2024-09-16 10:47:15 +02:00
committed by GitHub
parent 302afd8844
commit e2c3b8bf35
10 changed files with 2839 additions and 290 deletions

View File

@@ -4,6 +4,9 @@
body {
background: black;
--lk-va-bar-gap: 4px;
--lk-va-bar-width: 4px;
--lk-va-border-radius: 2px;
}
#__next {
@@ -21,19 +24,16 @@ body {
animation: fadeIn 0.5s ease-in-out alternate-reverse infinite;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 5px;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #555; /* Even lighter grey thumb on hover */
}