Commit 1559f64d authored by Muhammadali's avatar Muhammadali

update-

parent 5d674a42
{
"name": "boxdialer",
"version": "4.8.6",
"version": "4.8.7",
"description": "",
"main": "src/boxDialer.js",
"scripts": {
......
......@@ -272,7 +272,7 @@ const ModalPhoneNumpad = ({
<NumberButton
style={{ gridColumn: '1/4' }}
status={dynamicValue}
type={'call_button'}>
type={'call_button nocopy'}>
<NumberButton.CallButton exNum={exNum}>
<div className='left' onClick={() => callButton()}>
<CallIcon className='callIcon' />
......
......@@ -171,8 +171,17 @@ NumberButton.CallButton = styled.div`
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-top-color: #000;
transform: ${({ exNum }) => (exNum ? 'rotate(177deg)' : 'rotate(0deg)')};
${({ exNum }) =>
exNum
? {
transform: 'rotate(177deg)',
margin: '0 auto 4px auto',
}
: {
transform: 'rotate(0deg)',
margin: '0 auto -4px auto',
}}/* transform: ${({ exNum }) =>
exNum ? 'rotate(177deg)' : 'rotate(0deg)'}; */
}
::before {
content: '';
......
Markdown is supported
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