mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-24 02:46:27 +00:00
* refactor: initial setup for context view * refactor: updated design for log context view * refactor: updated comments and remove commented code * refactor: updated comments * refactor: handle hight issue * refactor: initial setup for context view * refactor: updated design for log context view * refactor: updated comments and remove commented code * refactor: updated comments * refactor: handle hight issue * refactor: added api version * refactor: height set to parent height and remove unnessarry code * refactor: removed commented code --------- Co-authored-by: Yunus M <myounis.ar@live.com>
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;
|
|
}
|
|
}
|
|
} |