Skip to content

Commit

Permalink
fix: fix phone input styles (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
trinhthinh388 authored Feb 15, 2024
1 parent efbda6b commit b26d124
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf .next"
},
"dependencies": {
"@react-awesome/components": "1.0.10",
"@react-awesome/components": "1.0.11",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"lucide-react": "^0.315.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @react-awesome/components

## 1.0.11

### Patch Changes

- Updated dependencies
- @react-awesome/phone-input@1.0.7

## 1.0.10

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-awesome/components",
"version": "1.0.10",
"version": "1.0.11",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -39,7 +39,7 @@
"access": "public"
},
"dependencies": {
"@react-awesome/phone-input": "1.0.6",
"@react-awesome/phone-input": "1.0.7",
"@react-awesome/use-click-outside": "0.0.3",
"@react-awesome/use-preserve-input-caret-position": "0.0.3",
"@react-awesome/use-selection-range": "0.0.3",
Expand Down
6 changes: 6 additions & 0 deletions packages/phone-input/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @react-awesome/phone-input

## 1.0.7

### Patch Changes

- Fix phone input border radius on safari

## 1.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/phone-input/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-awesome/phone-input",
"version": "1.0.6",
"version": "1.0.7",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions packages/phone-input/src/PhoneInput/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
padding: 0.5rem 0.75rem;
background-color: var(--rap-phone-input-bg);
color: var(--rap-phone-input-color);
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: var(--rap-phone-input-border-radius);
border-bottom-right-radius: var(--rap-phone-input-border-radius);
border: 1px solid var(--rap-phone-input-border-color);
Expand Down

0 comments on commit b26d124

Please sign in to comment.