mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-08 16:21:09 -06:00
Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com> Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
21 lines
377 B
CSS
21 lines
377 B
CSS
pre {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #e2e8f0 #ffffff;
|
|
}
|
|
|
|
pre::-webkit-scrollbar {
|
|
width: 4px !important;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
pre::-webkit-scrollbar-track {
|
|
background: #e2e8f0;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
pre::-webkit-scrollbar-thumb {
|
|
background-color: #cbd5e1;
|
|
border: 3px solid #cbd5e1;
|
|
border-radius: 99px;
|
|
}
|
|
|