Commit 15a2cecb authored by Muhammadali's avatar Muhammadali

update version: 0.1.1

parent adf75e0f
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "0.1.0", "version": "0.1.1",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
......
...@@ -32,7 +32,6 @@ const Modal = ({ ...@@ -32,7 +32,6 @@ const Modal = ({
setModalHidden(hidden); setModalHidden(hidden);
}, [hidden]); }, [hidden]);
console.log(callEvents, 'dsadfdssad');
if (!modalHidden) return; if (!modalHidden) return;
return ( return (
<MainBlock hidden={modalHidden || modalHidden} rollUp={rollUp}> <MainBlock hidden={modalHidden || modalHidden} rollUp={rollUp}>
......
...@@ -37,6 +37,7 @@ const MainBlock = styled.div` ...@@ -37,6 +37,7 @@ const MainBlock = styled.div`
justify-content: space-between; justify-content: space-between;
width: 100%; width: 100%;
} }
.close { .close {
background-color: #9d0f23; background-color: #9d0f23;
border-radius: 50px; border-radius: 50px;
...@@ -52,7 +53,6 @@ const MainBlock = styled.div` ...@@ -52,7 +53,6 @@ const MainBlock = styled.div`
const ModalContainer = styled.div` const ModalContainer = styled.div`
display: ${({ rollUp }) => (rollUp ? 'none' : 'block')}; display: ${({ rollUp }) => (rollUp ? 'none' : 'block')};
background-color: #29303a; background-color: #29303a;
border-radius: 3px; border-radius: 3px;
width: 550px; width: 550px;
......
...@@ -87,7 +87,7 @@ const DialPadIcon = styled(CallIcon)` ...@@ -87,7 +87,7 @@ const DialPadIcon = styled(CallIcon)`
const ModalPhoneDropDowm = styled.div` const ModalPhoneDropDowm = styled.div`
width: 230px; width: 230px;
position: absolute; position: absolute;
bottom: 135px; bottom: 80px;
transition: 0.2s; transition: 0.2s;
z-index: 99999999999999; z-index: 99999999999999;
transform: translate(${({ hidden }) => (hidden ? '-200%' : '-50%')}, 0%); transform: translate(${({ hidden }) => (hidden ? '-200%' : '-50%')}, 0%);
......
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