Commit 2f130b7f authored by Muhammadali's avatar Muhammadali

update-

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