Commit f52267f6 authored by Muhammadali's avatar Muhammadali

update version:

parent abd9d1d9
......@@ -10,6 +10,7 @@ const BxMiniWidjetUiStyle = styled.div`
padding: 0;
box-sizing: border-box;
}
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: ${({ status = '' }) =>
status === 'pending'
? 'orange'
......
......@@ -9,6 +9,7 @@ const DropDownStyle = styled.div`
align-items: center;
justify-content: center;
position: relative;
`;
DropDownStyle.Text = styled.div`
font-size: 22px;
......@@ -43,7 +44,6 @@ DropDownStyle.DropDown = styled.div`
background-color: #e9e9e9;
}
}
${({ visiblevalue }) => console.log(visiblevalue, 'visiblevalue')}
${({ visiblevalue }) =>
visiblevalue == 1
? {
......
......@@ -6,6 +6,12 @@ const MainBlock = styled.div`
z-index: 999;
display: ${({ hidden }) => (hidden ? 'flex' : 'none')};
transition: 0.3s;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
${({ rollUp }) =>
rollUp
? {
......
......@@ -5,6 +5,12 @@ import KeyboardBackspaceIcon from '@mui/icons-material/KeyboardBackspace';
import { boxDialerWidjetPosition } from '../../lib/boxDialerWidjetPosition';
const ModalPhoneNumpadStyle = styled.div`
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
width: 230px;
position: fixed;
bottom: 120px;
......
......@@ -5,4 +5,5 @@
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
\ No newline at end of file
}
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