Commit e519501b authored by Muhammadali's avatar Muhammadali

update version: 0.9.8

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