mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-26 12:02:19 +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>
24 lines
460 B
SCSS
24 lines
460 B
SCSS
.log-context-container {
|
|
border: 1px solid var(--bg-slate-400);
|
|
flex: 1;
|
|
position: relative;
|
|
overflow: scroll;
|
|
overflow-x: hidden;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 0.3rem;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: var(--bg-slate-300);
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
background: var(--bg-slate-200);
|
|
}
|
|
}
|