mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.0 KiB
Plaintext
57 lines
1.0 KiB
Plaintext
#tailchat-app {
|
|
@apply text-typography-light;
|
|
|
|
/* 滚动条 */
|
|
::-webkit-scrollbar {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
@apply bg-black bg-opacity-10;
|
|
border-color: transparent;
|
|
background-clip: padding-box;
|
|
border-width: 4px;
|
|
border-style: solid;
|
|
border-radius: 8px;
|
|
|
|
&:hover {
|
|
@apply bg-black bg-opacity-20;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
@apply bg-black bg-opacity-5;
|
|
border-color: transparent;
|
|
background-clip: padding-box;
|
|
border-width: 4px;
|
|
border-style: solid;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
// 深色模式覆盖
|
|
&.dark {
|
|
@apply text-typography-dark;
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #202225;
|
|
|
|
&:hover {
|
|
background-color: #202225;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: #2f3136;
|
|
}
|
|
}
|
|
}
|