Commit 1559f64d authored by Muhammadali's avatar Muhammadali

update-

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