Skip to content

Commit

Permalink
Fix nested css
Browse files Browse the repository at this point in the history
  • Loading branch information
h3poteto committed Dec 2, 2023
1 parent a48b0b4 commit 744e0a1
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions renderer/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,24 @@
.timeline-scrollable {
overflow-y: auto;
overflow-x: auto;
}

&::-webkit-scrollbar {
width: 6px !important;
height: 6px !important;
}
.timeline-scrollable::-webkit-scrollbar {
width: 6px !important;
height: 6px !important;
}

&::-webkit-scrollbar-thumb {
background-color: rgb(203 213 225);
border-radius: 4px !important;
opacity: 0;
}
.timeline-scrollable::-webkit-scrollbar-thumb {
background-color: rgb(203 213 225);
border-radius: 4px !important;
opacity: 0;
}

&::-webkit-scrollbar-track {
border-radius: 4px !important;
background-color: rgb(241 245 249);
}
.timeline-scrollable::-webkit-scrollbar-track {
border-radius: 4px !important;
background-color: rgb(241 245 249);
}

&:hover {
&::-webkit-scrollbar-thumb {
opacity: 1;
}
}
.timeline-scrollable:hover::-webkit-scrollbar-thumb {
opacity: 1;
}

0 comments on commit 744e0a1

Please sign in to comment.