Commit ecb59352 authored by Muhammadali's avatar Muhammadali

update version: 1.0.5

parent ba4feef8
This diff is collapsed.
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "1.0.3", "version": "1.0.4",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
"postcss": "^7.0.39", "postcss": "^7.0.39",
"postcss-loader": "^7.3.3", "postcss-loader": "^7.3.3",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1" "webpack-dev-server": "^4.15.1"
......
...@@ -7,11 +7,9 @@ const MainBlock = styled.div` ...@@ -7,11 +7,9 @@ const MainBlock = styled.div`
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; font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
* {
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
}
${({ rollUp }) => ${({ rollUp }) =>
rollUp rollUp
? { ? {
......
...@@ -6,11 +6,9 @@ import { boxDialerWidjetPosition } from '../../lib/boxDialerWidjetPosition'; ...@@ -6,11 +6,9 @@ import { boxDialerWidjetPosition } from '../../lib/boxDialerWidjetPosition';
const ModalPhoneNumpadStyle = styled.div` const ModalPhoneNumpadStyle = styled.div`
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
*{
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
}
width: 230px; width: 230px;
position: fixed; position: fixed;
bottom: 120px; bottom: 120px;
...@@ -38,6 +36,9 @@ ModalPhoneNumpadStyle.ButtonArea = styled.div` ...@@ -38,6 +36,9 @@ ModalPhoneNumpadStyle.ButtonArea = styled.div`
grid-gap: 8px; grid-gap: 8px;
`; `;
const Input = styled.input` const Input = styled.input`
margin: 0;
padding: 0;
box-sizing: border-box;
width: 100%; width: 100%;
height: 100%; height: 100%;
border-radius: 3px; border-radius: 3px;
......
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