feat(client): style code block scrollbar (#41556)
Styles the scrollbar within the python challenges answer box.
This commit is contained in:
committed by
GitHub
parent
6b63da3996
commit
746380b14d
@@ -37,7 +37,21 @@
|
|||||||
.video-quiz-options > label {
|
.video-quiz-options > label {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-quiz-options > label::-webkit-scrollbar {
|
||||||
|
height: 15px;
|
||||||
|
}
|
||||||
|
.video-quiz-options > label {
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: var(--quaternary-background) var(--secondary-background);
|
||||||
|
}
|
||||||
|
.video-quiz-options > label::-webkit-scrollbar-track {
|
||||||
|
background: var(--secondary-background);
|
||||||
|
}
|
||||||
|
.video-quiz-options > label::-webkit-scrollbar-thumb {
|
||||||
|
background-color: var(--quaternary-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-quiz-option-label {
|
.video-quiz-option-label {
|
||||||
|
Reference in New Issue
Block a user