Commit f52267f6 authored by Muhammadali's avatar Muhammadali

update version:

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