Skip to content
Snippets Groups Projects
Commit 0c725919 authored by chris's avatar chris
Browse files

finish drodowns

parent 16d26405
No related branches found
No related tags found
1 merge request!458Hhmi accessibility
......@@ -52,6 +52,7 @@ export default () => {
return (
<AnswerInput
aria-label="answer input"
onBlur={saveAnswer}
onChange={setAnswerInput}
onFocus={onFocus}
......
......@@ -16,15 +16,13 @@ import {
useOnClickOutside,
} from 'wax-prosemirror-core';
const Wrapper = styled.div`
opacity: ${props => (props.disabled ? '0.4' : '1')};
`;
const Wrapper = styled.div``;
const DropDownButton = styled.button`
background: #fff;
border: none;
color: #000;
cursor: ${props => (props.disabled ? `not-allowed` : `pointer`)};
cursor: ${props => (props.disabled ? `cursor` : `pointer`)};
display: flex;
position: relative;
width: 160px;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment