Skip to content
Snippets Groups Projects
Unverified Commit de2ce4f9 authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Fix the styling of the buttons in the notebook (#17313)

parent 84f4509d
No related branches found
No related tags found
No related merge requests found
......@@ -209,7 +209,7 @@ export default class NotebookStep extends React.Component {
const ColorButton = styled(Button)`
border: none;
color: ${({ color }) => (color ? color : c("text-medium"))}
color: ${({ color }) => (color ? color : c("text-medium"))};
background-color: ${({ color }) => (color ? lighten(color, 0.61) : null)};
&:hover {
color: ${({ color }) => (color ? darken(color, 0.115) : color("brand"))};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment