Skip to content

Commit

Permalink
Fix: slider and label color (Doenet#1943)
Browse files Browse the repository at this point in the history
  • Loading branch information
ernzher authored Mar 3, 2023
1 parent 77fc546 commit 62b0d0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Viewer/renderers/slider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const SubContainer2 = styled.div`
const StyledSlider = styled.div`
position: relative;
border-radius: 3px;
background: black; // black?
background-color: var(--canvastext);
height: 2px;
width: ${props => props.width};
user-select: none;
Expand Down Expand Up @@ -61,7 +61,7 @@ const Tick = styled.div`
const Label = styled.p`
position: absolute;
left: ${props => props.x};
color: black;
color: var(--canvastext);
font-size: 12px;
top: 1px;
user-select: none;
Expand Down

0 comments on commit 62b0d0f

Please sign in to comment.