mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-27 04:16:05 +00:00
25 lines
501 B
SCSS
25 lines
501 B
SCSS
|
|
.context-log-renderer {
|
||
|
|
.virtuoso-list {
|
||
|
|
overflow-y: hidden !important;
|
||
|
|
&::-webkit-scrollbar {
|
||
|
|
width: 0.3rem;
|
||
|
|
height: 0.3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
&::-webkit-scrollbar-track {
|
||
|
|
background: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
&::-webkit-scrollbar-thumb {
|
||
|
|
background: var(--bg-slate-300);
|
||
|
|
}
|
||
|
|
|
||
|
|
&::-webkit-scrollbar-thumb:hover {
|
||
|
|
background: var(--bg-slate-200);
|
||
|
|
}
|
||
|
|
|
||
|
|
.ant-row {
|
||
|
|
width: fit-content;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|