Commit 2f130b7f authored by Muhammadali's avatar Muhammadali

update-

parent e0ea8ff7
{
"name": "boxdialer",
"version": "2.9.0",
"version": "2.9.1",
"description": "",
"main": "src/boxDialer.js",
"scripts": {
......
......@@ -102,13 +102,17 @@ ModalDropDown.Inset = styled.div`
ModalDropDown.Item = styled.p`
font-size: 18px;
transition: 0.2s;
padding: 5px 12px;
padding: 5px 8px;
margin: 3px 0;
border-radius: 10px;
:hover {
background-color: #00000014;
padding: '5px 14px';
}
background-color: ${({ hoverBool }) => (hoverBool ? '#00000014' : '')};
${({ hoverBool }) =>
hoverBool && {
backgroundColor: '#00000014',
}}
`;
ModalDropDown.FullWindow = styled.div`
display: ${({ visiblevalue }) => (visiblevalue ? 'block' : 'none')};
......
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