Skip to content

Commit 8101915

Browse files
committed
fix: set letter spacing only password
1 parent 3311a16 commit 8101915

File tree

1 file changed

+3
-1
lines changed
  • packages/adena-extension/src/components/atoms/default-input

1 file changed

+3
-1
lines changed

packages/adena-extension/src/components/atoms/default-input/index.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ export const inputStyle = css`
1515
color: ${getTheme('neutral', '_1')};
1616
border-radius: 30px;
1717
padding: 14px 16px;
18-
letter-spacing: 7px;
18+
&[type='password'] {
19+
letter-spacing: 7px;
20+
}
1921
&::placeholder {
2022
color: ${getTheme('neutral', 'a')};
2123
letter-spacing: 0px;

0 commit comments

Comments
 (0)