Commit e519501b authored by Muhammadali's avatar Muhammadali

update version: 0.9.8

parent 5b56e05c
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "0.9.7", "version": "0.9.8",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
......
...@@ -14,7 +14,7 @@ DropDownStyle.Text = styled.div` ...@@ -14,7 +14,7 @@ DropDownStyle.Text = styled.div`
font-size: 22px; font-size: 22px;
`; `;
DropDownStyle.Window = styled.div` DropDownStyle.Window = styled.div`
display: ${({ visiblevalue }) => (visiblevalue ? 'block' : 'none')}; display: ${({ visiblevalue }) => (visiblevalue == 1 ? 'block' : 'none')};
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
...@@ -44,7 +44,7 @@ DropDownStyle.DropDown = styled.div` ...@@ -44,7 +44,7 @@ DropDownStyle.DropDown = styled.div`
} }
} }
${({ visiblevalue }) => ${({ visiblevalue }) =>
visiblevalue visiblevalue == 1
? { ? {
opacity: '1', opacity: '1',
transform: 'scale(1) translate(-50%, 0)', transform: 'scale(1) translate(-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